0

我目前在 Liquid Web 的主域下托管了一个 Wordpress 网站。每当我输入网址时,它都会正确指向,但只要我点击一个链接,它就会显示为 mydomain.com/subdomain。这是我目前拥有的:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /badenfirerescue/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /badenfirerescue/index.php [L]
    </IfModule>

任何指针?我希望所有内容都显示为badenfirerescue.com。

4

1 回答 1

0

从它的声音来看,您可能需要在 wordpress 仪表板中更新您的 Wordpress URL 和站点 URL。这应该会更新您网站上的所有链接。

如果这不起作用,我会考虑下载“Velvet Blues Update URLs”插件。这将通过 wp_options 表中的数据库并将旧 URL 替换为新 URL。

于 2013-07-10T18:04:51.930 回答