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