我已经提到了其他相关的问题/线索,但我不清楚它们。请解释/帮助我:如何在wordpress中显示用户名作为子域?防爆。如果用户使用abcd用户名注册,则abcd应显示为子域,如abcd.example.com,并相应地保留部分url点。
我已经将DNS记录配置为通配符,例如" * .example.com一个ip-address"和子域名也指向主域的IP地址,但有 调用/加载匿名/空白页面,如果在网址中没有提到任何特定页面,则应该指向主域名的index.php。
这是网站htaccess代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
由于