我如何只删除一个尾部斜杠

时间:2011-08-16 15:01:04

标签: .htaccess mod-rewrite

此代码段将删除网址末尾的所有斜杠

# Remove the trailing slash
RewriteCond %{HTTP_HOST} ^(www.)?site\.com$ [NC]
RewriteRule ^(.+)/$ http://site.com/$1 [R=301,L]

但我如何自定义此项仅用于

http://site.com/only_me/

http://site.com/only_me

也做这是做什么

RewriteCond %{HTTP_HOST} ^(www.)?site\.com$ [NC]

我是否需要它

1 个答案:

答案 0 :(得分:1)

尝试RewriteRule ^only_me\/$ http://site.com/only_me [R=301, L]