0

我是 wordpress 和服务器管理员的新手,我刚刚在本地目录的子文件夹中安装了一个 wordpress 博客。但我在配置 .htaccess 时遇到问题。安装 wordpress 的文件夹名为 onlifestyle,位于根目录中。我的网址格式为: http://onlifestyle.org/onlifestyle/health/basic-principles-of-proper-nutrition 而不是 http://onlifestyle.org/health/basic-principles-of-proper-nutrition my root 。 htaccess 是:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?onlifestyle.org$
RewriteRule ^(/)?$ onlifestyle/$1 [NC,L]

wordpress .htaccess:

 # BEGIN WordPress
    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteRule ^index\.php$ - [L]
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule . /onlifestyle/index.php [L]
    </IfModule>
#END WordPress

我使用永久链接:

http://onlifestyle.org/onlifestyle/%category%/%postname%

我应该如何配置 wordpress 以跳过 url 中子目录的名称

4

1 回答 1

1

除了 .htaccess 文件,您必须在 Wordpress 设置中设置正确的 URL。另请参阅:http ://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

于 2013-07-28T20:30:02.830 回答