这是我的.htaccess文件:
RewriteEngine On
RewriteBase /
RewriteRule (.*)tiny_mce_popup\.js$ /d_text.cgi?act=tiny_mce_popup.js [L]
RewriteRule (.*)sitemap\.xml$ /d_text.cgi?act=sitemap.xml [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.cgi?act=select&htmlfile=$1 [QSA]
现在这在主域(如example.com,other.com等)上运行良好,但不在子域上工作(如sub.example.com,mysubdomain.other.com等)。这有什么问题?