htaccess重定向到另一个文件夹

时间:2013-07-23 08:48:36

标签: .htaccess

我必须使用htaccess重定向。请帮助我。 由此 URL :- http://xxx/CCKCHT/ 重定向

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

1 个答案:

答案 0 :(得分:1)

通过httpd.conf启用mod_rewrite和.htaccess,然后将此代码放在.htaccess目录下的DOCUMENT_ROOT中:

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]
相关问题