是否有可能处理这样的URL有可能、URL

2023-09-02 09:45:48 作者:——凤凰情殇

http://www.example.com/http://www。 test.com

我曾尝试使用的.htaccess没有运气许多不同的方法。我需要获得第二个URL到来的参数。是否有可能将其重定向到的index.php,并把它作为 $ _ SERVER [REQUEST_URI] 或其他的方法?谢谢

UPD:看起来它是不可能得到整个URL,问号无法识别。理想的例子:

  127.0.0.1/http://www.test.com/script.php?a=hello&b=world#blabla;par2?%par3
 

和我需要让我的index.php的确切字符串

  www.test.com/script.php?a=hello&b=world#blabla;par2?%par3
 
怎么解决 URL有可能对网站造成安全威胁,您的访问被阻断

解决方案

这是绝对有可能的:的 http://downforeveryoneorjustme.com/http://www.google.com/

至于如何,它一直covered对ServerFault 已

http://www.example.com/http://www.test.com

I have tried many different methods using .htaccess with no luck. I need to get that second url coming as parameter. Is it possible to redirect it to index.php and get it as $_SERVER["REQUEST_URI"] or other method? Thanks

UPD: Looks like it is impossible to get whole URL, question marks are not recognized. Ideal example:

127.0.0.1/http://www.test.com/script.php?a=hello&b=world#blabla;par2?%par3 

and i need to get in my index.php exact string

www.test.com/script.php?a=hello&b=world#blabla;par2?%par3

解决方案

It's definitely possible: http://downforeveryoneorjustme.com/http://www.google.com/

As to how, it's been covered on ServerFault already