这是关于使用htaccess进行301重定向的一个非常基本的问题,但我的技能非常有限或根本没有关于regexp和htaccess的技能。
我想将没有点html的所有网址查询重定向到重定向到.html
我的意思是如何将所有somethinghtml
重定向到something.html
,请注意something
是每个网址中的真实字词。
any-somethinghtml
到any-something.html
some-somethinghtml
到some-something.html
- another-somethinghtml
至another-something.html
依旧......
答案 0 :(得分:0)
尝试:
RewriteEngine on
RewriteRule ^(.+[^.])html$ /$1.html [L,R=301]
这会将/foohtml
永久重定向到/foo.html
。