请帮帮我 在htaccess中有重定向 http://khabarpu.com/cat/syria-news.htm#.VwHk7LGL4x4.telegram
到
http://khabarpu.com/cat/syria-news.htm
对于seo,我自动删除.htm或.php之后的所有额外字符或像==
的specefic字符在htaccess中
答案 0 :(得分:0)
您可以查看该网址是否有片段,如果有,则将其删除:
$url = 'http://khabarpu.com/cat/syria-news.htm#.VwHk7LGL4x4.telegram';
$fragment = parse_url($url, PHP_URL_FRAGMENT);
// Has a fragment
if ($fragment !== null) {
// Remove it
$url = substr_replace($url, '', strlen($url) - strlen('#'.$fragment));
}
echo $url;