skip to Main Content

htaccess: how to stop it after first match – CPanel

this is my htaccess file : <IfModule mod_rewrite.c> # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^getlastversion(.*)$ /lastversion.php$1 [R=301,NC,L,QSA] # this is temporary and should be removed RewriteRule ^(.*)$ http://example.com?$1 [R=301,NC,L,QSA] </IfModule> browsing mysite.com/getlastversion redirect to example.com?lastversion.php(second rule),whereas i…

VIEW QUESTION
Back To Top
Search