从url中删除尾部斜杠

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从url中删除尾部斜杠相关的知识,希望对你有一定的参考价值。

  1. RewriteCond %{HTTP_HOST} ^your-domain.com$ [NC]
  2. RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
  3.  
  4. or, if you have 'www' part in your domain name, add this instead:
  5.  
  6. RewriteCond %{HTTP_HOST} ^(www.)?your-domain.com$ [NC]
  7. RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]

以上是关于从url中删除尾部斜杠的主要内容,如果未能解决你的问题,请参考以下文章