Forum Moderators: phranque
RewriteRule ^([^/.]+)\.htm$ /goto.php?p=$1 [L]
and when i have called something like this :
goto.php?p=x%2By
(actually goto.php?p=x+y)
i am getting the correct result p="x+y" in php file which i want.
But when i called like this :
x%2By.htm
(this is actually x+y.htm)
i am getting p="x y", it returns a space char instead of a plus char.
can anybody help me? thank you!