我有这个htaccess文件:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9]+:/.)$ result.php?u=$1
RewriteRule ^([a-zA-Z0-9]+:/.)/$ result.php?u=$1
我正在尝试做的是,将http://example.com/http://google.com重写为http://example.com/result.php?u=http://google.com,但我只是得到了“此服务器上找不到请求的网址”
答案 0 :(得分:1)
试试这个:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9:/\.]+)$ http://example.com/result.php?u=$1