标题位置添加了意外的“#”

时间:2014-08-15 15:14:11

标签: php wordpress apache server-configuration

我期待

的问题
header('Location:http://www.google.com');
exit;

它会将我重定向到任何类型的指定网址,但最后会带有“#”。请帮我找到解决方案。

其他信息:

  • php 5.3
  • Wordpress 3.9.2。

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

之间尝试了所有可能类型的网址和w / o空格

P.S.4代码是标题之前的简单if-else组合。

0 个答案:

没有答案