Daniel Crouse
Daniel Crouse

Reputation: 51

Removing Trailing text in URL

I need to remove text from the end of my URL. The URL will look somthing like the following:

  1. www.test.co.za/news/cat/index-mobile.html
  2. www.test.co.za/page-name/index-mobile.html

I need to remove the index-mobile.html from the URL.

Thank you in advance.

Upvotes: 1

Views: 35

Answers (1)

anubhava
anubhava

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

Related Questions