从url中删除尾部斜杠
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从url中删除尾部斜杠相关的知识,希望对你有一定的参考价值。
RewriteCond %{HTTP_HOST} ^your-domain.com$ [NC] RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L] or, if you have 'www' part in your domain name, add this instead: RewriteCond %{HTTP_HOST} ^(www.)?your-domain.com$ [NC] RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
以上是关于从url中删除尾部斜杠的主要内容,如果未能解决你的问题,请参考以下文章
htaccess:从以.xml / only结尾的URL中删除尾部斜杠