.htaccess - Redirect webpage of any name to another webpage with same name in a different folder -
let there 2 folders -> "abc" , "abc". if user accesses example.com/abc/file, want redirect him example.com/abc/file. surely done in .htaccess file. tried using rewriterule, cannot myself not quite used this(beginner ). easy. please me it. appreciated. regards, ben lind
add in htaccess file in document root:
rewriterule ^/?abc/(.*)$ /abc/$1 [l]
make sure not use nc
flag, ignores case.
Comments
Post a Comment