I am trying to rewrite url with htaccess from
https://www.example.com/cozumel/...
to
https://www.example.com/cozumel-shore-excursions/...
I tried like this
RewriteEngine On
RewriteRule ^/cozumel\/(.*) /cozumel-shore-excursions/$1 [L,R=301]
I am trying to rewrite url with htaccess from
https://www.example.com/cozumel/...
to
https://www.example.com/cozumel-shore-excursions/...
I tried like this
RewriteEngine On
RewriteRule ^/cozumel\/(.*) /cozumel-shore-excursions/$1 [L,R=301]
Try using this line:
RewriteRule ^cozumel/$ /cozumel-shore-excursions/?&%{QUERY_STRING}
just remove the leading slash from your rule's pattern :
RewriteEngine On
RewriteRule ^cozumel/(.*) /cozumel-shore-excursions/$1 [L,R=301]