在RewriteRule上删除.html不起作用

时间:2011-06-15 22:04:10

标签: mod-rewrite url-rewriting rewrite

我想从以下规则中删除网址中的.html,但我收到内部服务器错误

RewriteEngine On
RewriteRule ^([^/]*)\.html$ /folder/index.php?s=$1 [L]

我希望http://localhost/folder/page.htmlhttp://localhost/folder/page

1 个答案:

答案 0 :(得分:1)

试试这个:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)\.html$ /folder/index.php?s=$1 [L]
</IfModule>