标签: html .htaccess
我正在尝试从我的文件名中删除.html扩展名。这在我本地工作,但停止工作,在线它根本不起作用。我用来删除.html文件扩展名的代码是:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.html [NC] AddType text/x-component .htc
任何人都有其他解决方案吗?