需要一个htaccess重定向代码,它会将CAE/index.php/
插入到网址中。
重定向代码应检查URL中是否存在此代码段。只有当它不存在时,才应插入代码。
EG。 以下网址
http://localhost/dataPage
应重定向如下:
http://localhost/EWQ/index.php/dataPage
答案 0 :(得分:0)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^((?!EWQ/index\.php/).*)$ EWQ/index.php/$1 [L,NC]