我有一个像www.example.com这样的网站,我已经创建了(没有wordpress)。 现在我在子目录上安装wordpress.wordpress文件在www.example.com/test/file中,www.example.com / test是wordpress地址(我在常规设置中编辑它)。 我将.htaccess和index.php复制到example.com/test example.test中的index.php
require( dirname( __FILE__ ) . '/file/wp-blog-header.php' );
index.php在example.com/test/file
中require( dirname( __FILE__ ) . '/wp-blog-header.php' );
地址中的.htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /test/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test/index.php [L]
</IfModule>
root example.com中的.htaccess
RewriteOptions inherit
RewriteEngine on
RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^/?$ "http\:\/\/www\.example\.com\/index\.php\/asd" [R=301,L]
我希望www.example.com/test将其重定向到www.example.com 我怎么解决它?