.htaccess在本地不起作用?

时间:2014-12-03 21:07:00

标签: .htaccess

我有一个网站,我想从页面中删除.html扩展名。这是我的.htaccess文件

<Files ~ "^\.(htaccess|htpasswd)$">
deny from all
</Files>
Options Indexes
DirectoryIndex index.html  
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]     
order deny,allow

但它不起作用。请帮帮我

1 个答案:

答案 0 :(得分:1)

你在apache中激活了mod_rewrite吗?