使用mod_rewrite将所有流量重定向到index.php

前端之家收集整理的这篇文章主要介绍了使用mod_rewrite将所有流量重定向到index.php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试构建一个url shortener,我希望能够在域之后立即获取任何字符并将它们作为变量url传递.所以举个例子

> http://google.com/asdf

会成为

> http://www.google.com/?url=asdf.

这是我现在对mod_rewrite所拥有的,但我一直收到400 Bad Request:

RewriteEngine on  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule ^(.*) index.PHP?url=$1 [L,QSA]
尝试用^(.*)$替换^(.*)
RewriteRule ^(.*)$index.PHP?url=$1 [L,QSA]

编辑:尝试用/index.PHP替换index.PHP

RewriteRule ^(.*)$/index.PHP?url=$1 [L,QSA]
原文链接:https://www.f2er.com/php/137557.html

猜你在找的PHP相关文章