我期待
的问题header('Location:http://www.google.com');
exit;
它会将我重定向到任何类型的指定网址,但最后会带有“#”。请帮我找到解决方案。
其他信息:
p.s使用header()
,wp_safe_redirect()
和wp_redirect()
返回相同的问题。使用标题来调查它的初始语句中的问题。
更新
我在Chrome和FF中尝试过。
最后只有“#”。
htaccess的:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L] # <- For security porposes
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
可能是一个插件,是的。请告诉我你的建议是什么。我的意思是插件如何影响服务器配置。
P.S.2可能是服务器端问题?我可以联系托管服务提供商吗?
P.S.3我在:
和url_string
P.S.4代码是标题之前的简单if-else组合。