子目录

时间:2016-04-26 07:37:10

标签: wordpress .htaccess indexing subdirectory

我有两个单独的页面,并且子目录中的页面未按预期编制索引。当我谷歌时,它说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

1 个答案:

答案 0 :(得分:0)

问题出在Settings->General菜单中。在那里你可以定义WordPress Address (URL)Site Address (URL),在我的情况下是不同的,因为我的开发是在localhost中,当我在生产中转移解决方案时会出现问题。