您好我想重定向以下网址
example.com/2015/07/new-post.html
到
example.com/2015/07/new-post/
提前致谢。
找到了可行的解决方案
将扩展名从html更改为php
RedirectMatch 301 (.*)\.html$ http://www.example.com$1.php
只需从网址中删除.html扩展程序
RedirectMatch 301 (.*)\.html$ $1
godaddy用户必须在开头添加以下代码
Options +MultiViews