0

目前,访问我网站上的链接的唯一方法是在网址末尾有一个斜杠,如 www.me.com/portfolio/ 如何在最后删除斜杠?

4

1 回答 1

3
Options +FollowSymlinks -MultiViews

RewriteEngine On
RewriteBase /

# Remove slashes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)$
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]

我相信这会奏效。将其放在您要执行此操作的目录中。

于 2013-02-04T00:02:59.527 回答