Hi, i have the folowing rewrite rules in my .htaccess file
The rules are correct they have been working for ages on my old machine. But since I migrated to C-Panel i can not get them to work...
Any help?
Thanks
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} -d [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} -f
RewriteRule ^(.*)$ - [L,NS]
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^/(.*)/(.*)/$ /index.php?&page=$1&sub=$2&%{QUERY_STRING} [L,NS]
RewriteRule ^/(.*)/(.*)/$ /index.php?&page=$1&sub=$2 [L,NS]
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^/(.*)/$ /index.php?&page=$1&%{QUERY_STRING} [L,NS]
RewriteRule ^/(.*)/$ /index.php?page=$1 [L,NS]
RewriteRule ^/([^/]*)/(.*)$ /$2 [NS,N]
Any help?
Thanks