.htaccess - htaccess redirect to another folder -
i have redirect using htaccess
.please me. url :- http://xxx/cckcht/
redirect
url :- http://xxx/cckcht/lhc_web/index.php/site_admin/
enable mod_rewrite , .htaccess through httpd.conf
, put code in .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]
Comments
Post a Comment