0

当我使用 .htaccess 文件到我的根文件夹来重写 URL 时,它发生错误并得到这个消息“服务器遇到内部错误或配置错误,无法完成您的请求。”

我在我的 .htaccess 文件中使用这个重写规则

Options +FollowSymLinks
RewriteEngine on

RewriteRule services services.html?

http://www.domain.com/services.html获取重写 url http://www.domain.com/services

请指导我

4

1 回答 1

0

我认为它应该是

RewriteRule ^services$ services.html [L]

或者

RewriteCond /%{REQUEST_FILENAME}.html -f
RewriteRule ^([a-zA-Z0-9_-\s]+)/$ /$1.html
于 2012-09-06T05:34:34.440 回答