我的情况如下:
根目录:/index.php(启动页面)
子目录:/2015/index.php(使用index.php安装wordpress)
当我点击主页上的2015 Wordpress安装的任何链接时,它会从根目录中打开index.php而不是子目录中的index.php(启动页面),因此我的链接都没有工作。
root和2015文件夹都有一个Wordpress .htaccess文件:
# 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 :(得分:0)
尝试在两次安装时更新永久链接。
然后检查.htaccess中的RewriteBase
root install应设置为RewriteBase /
2015安装应设置为RewriteBase /2015/
如果这些是正确的,请确保根目录上的链接指向2015目录。
答案 1 :(得分:0)
在生成永久链接之前,您需要更改数据库选项表中的设置,
您需要更改siteurl
中的home
和option
行
否则你也可以在config.php
:
define('WP_HOME','http://ex.com/2015');
define('WP_SITEURL','http://ex.com/2015');