Deval Shah
Deval Shah

Reputation: 1094

htaccess redirect to another folder

I have to redirect using htaccess.Please help me. From this URL :- http://xxx/CCKCHT/ to redirect it

URL :- http://xxx/CCKCHT/lhc_web/index.php/site_admin/

Upvotes: 1

Views: 112

Answers (1)

anubhava
anubhava

Reputation: 786091

Enable mod_rewrite and .htaccess through httpd.conf and then put this code in your .htaccess under DOCUMENT_ROOT directory:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /CCKCHT/

RewriteRule (?!^lhc_web/index\.php/site_admin/)^(.*)$ /CCKCHT/lhc_web/index.php/site_admin/$1 [L,R=301,NC]

Upvotes: 1

Related Questions