.htaccess伪静态规则怎么不正确?

发布于 2021-11-18 08:54:23 字数 965 浏览 710 评论 2

经过测试我这样写是可以的:

RewriteEngine on
#RewriteBase /

RewriteRule 1.html /Handler.php/$1


但是我想把整个站的请求全部交给 Handler.php 处理

RewriteEngine on

#RewriteBase /
RewriteCond %{QUERY_STRING} ^(.*)$ 

RewriteRule ^(.*)$ Handler.php/$1


当我访问的时候 出现错误:

这是什么原因

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.





如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

高跟鞋的旋律 2021-11-19 02:42:19

不是,可能是这样会让 伪静态陷入 死循环,所以报错了 我已经更改正确了

樱花落人离去 2021-11-19 01:07:59
RewriteRule ^(.*)$ Handler.php/$1

是不是少了个/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文