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