如何删除网址末尾的斜杠?

时间:2013-02-03 23:50:41

标签: html .htaccess url

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

1 个答案:

答案 0 :(得分:3)

Options +FollowSymlinks -MultiViews

RewriteEngine On
RewriteBase /

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

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