.htaccess redirect folder to a url

后端 未结 4 1115
小鲜肉
小鲜肉 2020-12-14 00:55

I\'m trying to redirect a folder and all its sub files to a URL with a .htaccess file.

But

Redirect 301 /abc/cba/ http://www.aaa.com/
4条回答
  •  遥遥无期
    2020-12-14 01:12

    By default, Redirect sort of maps the path node to a new path node, so anything after the first path gets appended to the target URL.

    Try:

    RedirectMatch 301 ^/abc/cba/ http://www.aaa.com/?
    

    Or if you'd rather use mod_rewrite instead of mod_alias:

    RewriteEngine On
    RewriteRule ^/?abc/cba/ http://www.aaa.com/? [R=301,L]
    

提交回复
热议问题