RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^([a-zA-Z0-9_\/]+)$ index.php/$1 [L]目前用以上语句把 xxx.com/index.php/abc 简写为 xxx.com/abc现在想在此基础上 abc.xxx.com 也同样可以访问 xxx.com/index.php/abc 请问该怎么写。
1 回答
DIEA
TA贡献1820条经验 获得超2个赞
RewriteCond %{REQUEST_HOST} (abc)\.xxx\.com
RewriteRule ^(.*)$ index.php/%1 [L]
正好最近在写这个, 注意用%1
添加回答
举报
0/150
提交
取消