mod_rewrite 重写规则不起作用
我已与我的主机确认 mod_rewrite 已启用。我希望重写传入请求以传递到我的根目录中的 mod_rewrite.php 文件。 Mod_rewrite 似乎根本不起作用。这是我的 .htaccess 文件中的代码:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/(.*)$ /mod_rewrite.php?vpath=$1 [L,QSA]
</IfModule>
I have confirmed with my host that mod_rewrite is enabled. I want incoming requests to be rewritten to be passed to a mod_rewrite.php file in my root directory. Mod_rewrite does not seem to be working at all. Here is the code in my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/(.*)$ /mod_rewrite.php?vpath=$1 [L,QSA]
</IfModule>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要执行以下操作:
Here's what you need to do: