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.
サーバーがたとえば /images/img.png から /images/img.png/ にリダイレクトしないようにするにはどうすればよいですか? htaccessしか使えません。
これはデフォルトの動作ではないため、サーバーの構成のどこかに次のようなものがあります。
RewriteCond %{REQUEST_URI} ^(/.+[^/]) [NC] RewriteRule . %1/ [L,R=301]
グローバル構成のどこからでもそのルールを削除するだけで、これを停止できます。
それが不可能な場合。を追加して、サイトの書き換えエンジンをオフにしてみてRewriteEngine Offください.htaccess。
RewriteEngine Off
.htaccess