Wordpress链接在除主页之外的任何地方附加URI

时间:2013-03-13 15:23:18

标签: wordpress url-rewriting hyperlink permalinks

因此,在我的网站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

0 个答案:

没有答案