want .htaccess rewrite code of single url to new one - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Resources (https://community.mybb.com/forum-8.html) +--- Forum: MyCodes (https://community.mybb.com/forum-117.html) +--- Thread: want .htaccess rewrite code of single url to new one (/thread-97490.html) |
want .htaccess rewrite code of single url to new one - kashifyy - 2011-06-26 i want to redirect /misc.php?page=googlesearch to /googlesearch can someone give me rewrite code to put in .htaccess? got it done from online tool http://www.webtoolhub.com/tn561403-htaccess-url-rewrite.aspx Input URL http://funchit.com/misc.php?page=googlesearch Example Output http://funchit.com/misc-page-googlesearch.php Options +FollowSymLinks RewriteEngine on RewriteRule -page-(.*)\.php misc.php?page=$1 |