我有一个像abc.example.com
这样的子域,它安装了wordpress。它的.htaccess
有这个:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
如何使example.com
的根域不使用wordpress,因为example.com
应该运行我的node.js应用程序?