这是我的 .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 等)。这里有什么问题?