3

经过所有的研究,我还没有找到答案。

在旧网站上,html 文件的格式为http://www.example.com/folder/file.html 我在 wordpress 中使用 url 格式http://www.example.com/folderfile/建立了新网站 我有使用重写器剥离 .html 没有问题,但是如何删除 / after 文件夹?有什么方法可以制作

http://www.example.com/folder/file.html自动 重定向到 http://www.example.com/folderfile/

任何建议表示赞赏!谢谢!

4

3 回答 3

1

试试这个:

RewriteRule ^(.*)/(.*).html$ ./$1$2/ [QSA]
于 2012-12-06T07:43:59.323 回答
0

我认为你所需要的只是这样的:

RewriteEngine On
RewriteRule .* http://www.example.com/folderfile/ [L]

http://www.example.com/folder/file.html重定向到

http://www.example.com/folderfile/

于 2012-12-06T08:03:46.717 回答
0

这很好用:

 RewriteRule ^moreinfo/(.*)$ /moreinfo$1 [R=301]
 RewriteRule ^healthsolutions/(.*)$ /healthsolutions$1 [R=301]

/moreinfo/ 和 /healthsolutions/ 是文件夹

于 2013-01-16T04:57:04.357 回答