0

我安装了 Wordpress 多站点,并想了解子域的实际管理方式,即当浏览器请求 URL 时,我的 wordpress 多站点如何知道在哪里可以找到文件/数据user1.domain.com

我检查了 DNS A 记录,只看到了通配符。

我检查了.htaccess,它看起来如下:

RewriteEngine On
RewriteBase /

# Protect the htaccess file
<Files .htaccess>
Order Allow,Deny
Deny from all
</Files>

# Protect wpconfig.php
<Files wp-config.php>
Order Allow,Deny
Deny from all
</Files>

# Disable directory browsing
Options All -Indexes

RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]

所以我认为 .htaccess 不管理子域,或者是吗?

那么,当浏览器请求 URL user1.domain.com 时,我的 wordpress 多站点如何知道在哪里可以找到文件/数据?

4

0 回答 0