Reputation: 51
I need to remove text from the end of my URL. The URL will look somthing like the following:
I need to remove the index-mobile.html from the URL.
Thank you in advance.
Upvotes: 1
Views: 35
Reputation: 785156
You can use this rule in your site root .htaccess:
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/+(.*)/index-mobile\.html\s [NC]
RewriteRule ^ /%1? [R=301,L,NE]
# rest of your rules ho here
Upvotes: 1