【发布时间】:2011-07-25 19:51:24
【问题描述】:
我想在所有网址的末尾添加一个正斜杠......
目前,我网站上的示例链接是:<a href="/about/terms-of-use">
当我将其更改为:<a href="/about/terms-of-use/"> 时出现内部服务器错误
这是我的 htaccess:
AddType application/x-httpd-php .html
AddType application/x-httpd-php .htm
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [L]
为什么尾部的正斜杠会破坏 URL?
【问题讨论】:
标签: .htaccess url mod-rewrite url-rewriting