0
我有一個網站,我想從頁面中刪除.html擴展名。這是我的.htaccess文件.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
但它不起作用。請幫我