通过.htaccess从url中删除.html

时间:2015-08-30 06:06:23

标签: php html5 .htaccess

在一些apache设置之后我在Localhost中使用以下代码它工作正常。

myWebClient.Proxy = null;

但是当我在托管服务器上传这个.htaccess文件然后显示错误404.当我在线查看.htaccess测试时它显示RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.html [NC,L]

1 个答案:

答案 0 :(得分:1)

这应该有效:

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]