从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中删除尾部斜杠的主要内容,如果未能解决你的问题,请参考以下文章

从url中删除尾部斜杠

Htaccess:从URL添加/删除尾部斜杠

从查询字符串 Apache 中删除尾部斜杠

htaccess:从以.xml / only结尾的URL中删除尾部斜杠

如何在 Rails 应用程序中删除 URL 的尾部斜杠? (在 SEO 视图中)

删除web URL中的扩展名和尾部斜杠: