如何使用htaccess重定向URL

时间:2013-06-28 08:01:22

标签: .htaccess redirect

我有几个需要重定向的网址,例如: (site_root)/ tag / somethig重定向到root,我正在尝试这个但不能正常工作

RewriteRule ^(.*)/tag/somethig ./ [R=301,L]

是否需要先定义网站根目录?

我的htaccess:

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php ./ [R=301,L]

我不知道什么难以输入域名,例如www.domain.com/xxx,因为它正在制作中

1 个答案:

答案 0 :(得分:0)

让你的.htaccess像这样:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /

RewriteRule ^tag/somethig/?$ / [R=301,L,NC]
RewriteRule ^index\.php$ / [R=301,L,NC]