我正在尝试构建一个url shortener,我希望能够在域之后立即获取任何字符并将它们作为变量url传递.所以举个例子
原文链接:https://www.f2er.com/php/137557.html会成为
> 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]