删除.html /并重定向到新网址

时间:2017-04-13 14:36:55

标签: .htaccess redirect url-rewriting

我试图在重新指挥中做两个步骤。我试图从

重定向

www.example.com/02/11/name-of-post.html/

www.exampleblog.com/02/11/name-of-post

所以我从一个不同的网址开始,帖子以.html /

结尾

我可以删除.html,但似乎尾随斜杠会导致问题。

www.example.com/02/11/name-of-post.html/ - 这不会重定向

www.example.com/02/11/name-of-post.html - 这将

#remove .html from posts
RewriteCond %{THE_REQUEST} \.html/$
RewriteRule ^(.*)/$ $1 [R=301]
RewriteRule ^(.*)\.html$ /$1 [R=301,L]

1 个答案:

答案 0 :(得分:0)

制作名为' post-of-post'的目录/文件夹。然后调用实际包含html' index.html'的文件,如果您希望post-post-post显示为/ name-of-post /。如果在URL后添加斜杠(/),则计算机会将其视为目录,而不是单个网页。