.htaccess将domain.com/subfolder/index.html重定向到domain.com/subfolder/

时间:2017-10-25 12:54:07

标签: .htaccess web seo http-status-code-301 http-redirect

我想将域子文件夹index.html重定向到它的根目录

示例

current: https://example.com/en/index.html 
expected: https://example.com/en/

/en/https://example.com中的子文件夹,当用户输入https://example.com/en/index.html时,应将其重定向到https://example.com/en/

我使用了以下代码,但它重定向到https://example.com

RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://example.com/en/$1 [R=301,L]
RewriteRule ^(.*)index$ http://example.com/en/$1 [R=301,L]

0 个答案:

没有答案