apache - mod_rewrite index.php?p=$1 -
I am trying to rewrite index.php / page / I do not have to work on it can do!
This is a work of:
Please help!
back-reference $ 1
your RewriteRule
Do not correspond to a group of left hand (groups defined by using parentheses) Try one of the following:
RewriteRule * Index.php? P = $ 0 # - or - RewriteRule ^ (. *) $ Index.php? P = $ 1
Comments
Post a Comment