使用.htaccess进行301重定向

时间:2015-06-01 17:16:00

标签: apache .htaccess mod-rewrite http-status-code-301

我想重定向301:

http://www.example.com/en/index.htmlhttp://www.example.com/en/

我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:

RewriteEngine On

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

答案 1 :(得分:1)

更短的版本:

Redirect 301 /en/ /en/index.html
相关问题