Karadako
Karadako

Reputation: 21

Make a 301 redirect with .htaccess

I want to make redirect 301:

http://www.example.com/en/index.html to be http://www.example.com/en/.

How I can do this?

Upvotes: 0

Views: 36

Answers (2)

Amit Verma
Amit Verma

Reputation: 41209

Shorter version :

Redirect 301 /en/ /en/index.html

Upvotes: 1

anubhava
anubhava

Reputation: 784868

You can use this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

# remove index.html
RewriteCond %{THE_REQUEST} /index\.html [NC]
RewriteRule ^(.*?)index\.html$ /$1 [L,R=302,NC,NE]

Upvotes: 0

Related Questions