如何使用htaccess从网站末尾删除额外的字符?

时间:2016-04-04 03:54:36

标签: php apache .htaccess mod-rewrite

请帮帮我 在htaccess中有重定向 http://khabarpu.com/cat/syria-news.htm#.VwHk7LGL4x4.telegram

http://khabarpu.com/cat/syria-news.htm

对于seo,我自动删除.htm或.php之后的所有额外字符或像==

的specefic字符

在htaccess中

1 个答案:

答案 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;