.htaccess redirect folder to a url

后端 未结 4 1114
小鲜肉
小鲜肉 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:23

    here's another example of a mod_rewrite rule that worked for me

    I wanted to redirect a sub directory to the root of the same domain.

    
    RewriteEngine On
    RewriteRule ^sub_directory/(.*)$ /$1 [R=301,NC,L]
    
    

    more examples can be found here:http://coolestguidesontheplanet.com/redirecting-a-web-folder-directory-to-another-in-htaccess/

提交回复
热议问题