因此,在我的网站http://www.bigideaadv.com/上,所有链接格式正确,看起来像
http://www.bigideaadv.com/wp-content/themes/my_theme_file/location_of_file
在任何其他网页上,例如http://www.bigideaadv.com/blog,它们的格式为
http://www.bigideaadv.com/blog/wp-content/themes/my_theme_file/location_of_file
想知道为什么它将所有URI附加到页面链接。
我包含htaccess文件以防万一它是问题的一部分:
Options -Indexes
Options +FollowSymLinks
DirectoryIndex index.php index.html
# 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