我有两个wordpress站点,一个在主目录(public\\u html)中,另一个在子目录staging中。我已经用配置了子目录站点中的所有设置http://example.com/staging 但当我加载时http://example.com/staging 它重定向到主站点和临时站点中均未找到的页面。我设置了。htaccess文件在暂存子目录中,如下所示。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /staging/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /staging/index.php [L]
</IfModule>
# END WordPress
而这在主站点的主目录中。
# 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>
# END WordPress
任何人都可以帮助我解决这个问题,我的临时站点可以正常加载吗?之前谢谢你。