1

I've already read all helps here and everywhere, but I can't solve my problem. I got hundreds of urls 404 links I would like use htaccess to redirect all URLS beginning with /rstu1s/it? and redirect to the root. I did several attempts but I obtain always 404!!!

thanks Tru

4

1 回答 1

5

使用 mod_alias:

RedirectMatch 301 ^/rstu1s/it / 

使用 mod_rewrite:

RewriteEngine On
RewriteRule ^rstu1s/it / [L,R=301]

这些都需要在文档根目录的 htaccess 文件中。

于 2013-05-22T17:52:36.197 回答