Finally! The rewrite rule in .htaccess was wrong.
Old rule
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
New rule
RewriteRule ^([^/]+)/(.*)$ index.php?page=$2&hl=$1 [QSA]
Search found 2 matches
- Fri Jun 12, 2009 1:19 pm
- Forum: [locked] Installation, Setup and Upgrade
- Topic: [solved] Help with mod_rewrite
- Replies: 3
- Views: 1790
- Tue Jun 09, 2009 2:06 pm
- Forum: [locked] Installation, Setup and Upgrade
- Topic: [solved] Help with mod_rewrite
- Replies: 3
- Views: 1790
[solved] Help with mod_rewrite
I have a multilanguage site and I am using mod_rewrite. I had everything up and running and had to move the site from my XP box to a newly installed Vista box. Before I moved the site everything was working as it should. Now it has stopped working on my original site as well :( Only thing I can reme...