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.
現在、私の Web サイトのリンクにアクセスする唯一の方法は、www.me.com/portfolio/ のように URL の末尾にスラッシュを付ける方法です。最後のスラッシュを削除するにはどうすればよいですか?
Options +FollowSymlinks -MultiViews RewriteEngine On RewriteBase / # Remove slashes RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !(.*)$ RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
これでうまくいくと思います。これを実行するディレクトリに配置します。