Forum Moderators: coopster
Here is my .htaccess file content:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^news/([0-9][0-9])/(.*)$ /$2?id=$1 [L,QSA]
</IfModule>
I want to rewrite
www.example.com/news/55/test.php to www.example.com/test.php?id=55
It works perfect on my local machine but when I put the same thing on the server, I get
www.example.com/test.php?PHPSESSID=12121... instead of my passed parameter.
I guess there is some option or config which is not set properly on my server machine.
Any ideas?
Thanks in advance.
--
Arsen