我需要将扩展名为 .html
的所有文件重定向到不带 .html
扩展名的相同位置。无论从哪个位置请求,例如:
/file1.html
---> http:///mysite.com/file1/
/file2.html
---> http:///mysite.com/file2/
/file3.html
---> http:///mysite.com/file3/
/file4.html
---> http:///mysite.com/file4/
谢谢。
答案 0 :(得分:2)
尝试将以下内容添加到站点根目录中的.htaccess
文件中。
RewriteEngine on
RewriteBase /
RewriteRule ^(.+)\.html$ $1/ [L,NC,R=301]
答案 1 :(得分:0)
这应该有效:
RewriteRule ^/?(.+)\.html$ http://http:///mysite.com/$1/ [R,L]