我正在尝试将现有的基于基岩的多站点实例移动到nginx,但很难获得一组nginx规则来模仿原始规则。htaccess。基岩将文件的关键放在wp/子目录中,但URL仍然需要从根域访问。
这个htaccess如下所示:
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) wp/$1 [L]
RewriteRule ^(.*\\.php)$ wp/$1 [L]
RewriteRule . index.php [L]
我需要这些至少作为nginx conf规则,或者最好是nginx vhost规则。