Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,访问我网站上的链接的唯一方法是在网址末尾有一个斜杠,如 www.me.com/portfolio/ 如何在最后删除斜杠?
Options +FollowSymlinks -MultiViews RewriteEngine On RewriteBase / # Remove slashes RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !(.*)$ RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
我相信这会奏效。将其放在您要执行此操作的目录中。