Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下方法重定向 URL:
$url = "位置:http ://mydomain.com/#!Mypage|000 "; 标头($url);
但结果是重定向到:
http://mydomain.com/#!Mypage%7C000
问题是管道字符。正确的方法是如何做到这一点?
%7C 是管道字符。如果 mydomain.com 上的 Web 服务器的处理Mypage%7C000方式不同于Mypage|000,则 Web 服务器已损坏。
%7C
Mypage%7C000
Mypage|000