我如何使用htaccess重定向网址,并在其中添加额外的句号?

时间:2014-02-19 19:45:45

标签: .htaccess mod-rewrite redirect

我有一组由网站站长工具标记的网址,如下所示: -

www.domain.com/blog/tag/tag-name/www.whatisthisdomaindoinghere.com/subdir/subsubdir/index.htm

我只是不知道如何将这些重定向到相当简单的域名,例如www.domain.com。

帮助大大​​赞赏:-) 谢谢, 克里斯

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ [NC]
RewriteRule ^blog/([^/]+)/([^/]+)/.+ /blog/$1/$2/ [L,R=301]