Reputation: 1094
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
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