Hey all! Need some help to redirect the old file structure to new, several lines: old: site/default.php?page=uk01 new: site/txt/uk01.php old:site/default.php?page=us01 new:site/txt/aus01.php 01 means there are many pages like this with 01, 02, 03 etc. Please post the .htaccess file I should use to redirect the old queries to new pages thanks!
Options +FollowSymLinks RewriteEngine on RewriteRule /txt/(.*)\.php$ /default.php?page=$1 that should do the trick
Try RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} ^page=([a-z0-9]+)$ RewriteRule ^default\.php$ /txt/%1.php? [R=301,L] Code (markup): This would redirect yourdomain.com/default.php?page=anything123 to yourdomain.com/txt/anything123.php