我有两个单独的页面,并且子目录中的页面未按预期编制索引。当我谷歌时,它说www.page1.com/page2
,其中page1
位于根目录中,page2
位于文件夹page2
中,但当我输入www.page2.com
域名时工作得很好。我怀疑htaccess
是问题所在。有想法的人吗?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /site2/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /site2/index.php [L]
</IfModule>
# END WordPress
答案 0 :(得分:0)
问题出在Settings->General
菜单中。在那里你可以定义WordPress Address (URL)
和Site Address (URL)
,在我的情况下是不同的,因为我的开发是在localhost中,当我在生产中转移解决方案时会出现问题。