好吧,标题可能听起来有点奇怪,但我认为有点形容它。
基本上我想要这样做:
/?url=http://someUrl.com/
进入这个:
/http://someUrl.com/
我知道如何做到这一点,如果没有“http://”,“https://”或者扩展......那就是我问你们的问题:D
我尝试RewriteRule ^([^./]*)$ index.php?url=$1
,但无法使用http或扩展程序
http(s),不是必需的,但它应该能够存在。
答案 0 :(得分:1)
尝试使用:
RewriteRule ^(http.*)$ index.php?url=$1