RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
##
RewriteRule ^([a-zA-Z0-9_\/]+)$ index.php/$1 [L]
目前用以上語句把 xxx.com/index.php/abc 簡寫為 xxx.com/abc
現在想在此基礎上 abc.xxx.com 也同樣可以訪問 xxx.com/index.php/abc 請問該怎麼寫。
PS:我已經將abc.xxx.com的ip解析過去了
RewriteCond %{REQUEST_HOST} (abc).xxx.com
RewriteRule ^(.*)$ index.php/%1 [L]
剛好最近在寫這個, 注意用%1