此代码段将删除网址末尾的所有斜杠
# 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]
我是否需要它