1

我必须使用重定向htaccess。请帮助我。从这里 URL :- http://xxx/CCKCHT/ 重定向它

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

1 回答 1

1

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_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]
于 2013-07-23T10:55:20.903 回答