.htaccess在根目录中使用Wordpress并在子目录中单独安装

时间:2011-02-11 17:39:24

标签: wordpress .htaccess

我在顶级目录中安装了Wordpress。我正在尝试在子目录中放置一个单独的Wordpress安装 - 一种带有自己的代码文件和数据库的“开发环境”。

目前,子目录中的所有网址都有404页面找不到错误。

.htaccess for子目录:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /v3
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
</IfModule>
主目录的

.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^laddercapital\.com$ [NC]
RewriteRule ^(.*)$ http://www.laddercapital.com/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/?v3/
RewriteRule . /index.php [L]
</IfModule>

想法?

2 个答案:

答案 0 :(得分:1)

尝试在子目录中的RewriteBase文件中设置.htaccess。 E.g。

RewriteBase /v3/wordpress

答案 1 :(得分:0)

请尝试使用子目录中的.htaccess:

# BEGIN WordPress
RewriteEngine On
RewriteBase /v3/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /v3/index.php [L]
# END WordPress

来源:WP 404 not found subdirectory