RewriteEngine 为 404 页面给出错误 500 内部服务器错误 - apache2
我想用 apache 中的空内容替换 .html 扩展名。 例如DNS/coffee.html。DNS/coffee我找到了这个代码。 <IfModule mod_rewrite.c> RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/?$ $1.html [L] </IfModule> 它完成了我...