RewriteEngine on
Options +FollowSymLinks
RewriteRule ([0-9]+)/([0-9]+)/([0-9]+)/(.*)/(.*)\.php$ index.php?tid=$1&cid=$2&cat=$3 [L]
table - row - category - section - page name
This works great for my 5 variables. Page urls looks like this: website.com/66/0/12/categories/product-name.php
I have a page a forgot password page which is a for. When an email address is submitted, it goes to a page that does the work etc, then sends back a message to say something like "Success" of "Failuer". But i am finding that i can't request[] those vars back on the forgot password password form page to work ever since i implimented htaccess mod rewrite.
Is there a way to modify the htaccess so that i can still send the odd variable ??
RewriteEngine on
Options +FollowSymLinks
RewriteRule ([0-9]+)/([0-9]+)/([0-9]+)/(.*)/(.*)\.php$ index.php?tid=$1&cid=$2&cat=$3 [L]
table - row - category - section - page name
This works great for my 5 variables. Page urls looks like this: website.com/66/0/12/categories/product-name.php
I have a page a forgot password page which is a for. When an email address is submitted, it goes to a page that does the work etc, then sends back a message to say something like "Success" of "Failuer". But i am finding that i can't request[] those vars back on the forgot password password form page to work ever since i implimented htaccess mod rewrite.
Is there a way to modify the htaccess so that i can still send the odd variable ??
Totally boggled
Doug
Hm, I actually thought that would allow GET data, I know it allows POST data so why not try using that instead? If that does not allow get data then you could either make another htaccess rule or use another page that does not have any rules applied to it.