example -
previous site - books.php
new site - books.html
These automatically redirect to books.html?page=books.php, which of course throws a URL not found error.
I'm assuming this is because of the rewrite rules in place.
Code: Select all
# For Friendly URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]
Any help would be greatly appreciated!
Thanks
LadyHLG