2016-04-26 49 views
0

我有兩個單獨的頁面,子目錄中的頁面未按預期編入索引。當我谷歌它的說法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

問題出在Settings->General菜單上。在那裏你可以定義WordPress Address (URL)Site Address (URL),這在我的情況下是不同的,因爲我的開發是在本地主機上,並且在生產中傳輸解決方案時出現問題。