.htaccess伪静态规则怎么不正确?
经过测试我这样写是可以的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是,可能是这样会让 伪静态陷入 死循环,所以报错了 我已经更改正确了
是不是少了个/