我必须使用重定向htaccess
。请帮助我。从这里
URL :- http://xxx/CCKCHT/
重定向它
URL :- http://xxx/CCKCHT/lhc_web/index.php/site_admin/
我必须使用重定向htaccess
。请帮助我。从这里
URL :- http://xxx/CCKCHT/
重定向它
URL :- http://xxx/CCKCHT/lhc_web/index.php/site_admin/
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放在您.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]