0

不幸的是,我在根文件夹中安装了 wordpress,并且由于我没有设法将安装移动到子文件夹,因此我尝试设置不同的目录索引,但我根本无法访问 index.php现在,site.php 中有一个指向它的链接。当我尝试链接 site.xx/index.php 我只是被发送到 site.xx/

DirectoryIndex site.php

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

# END WordPress
4

2 回答 2

0

在这种情况下,您必须将所有对“index.php”的引用更改为 site.php。如果您为索引使用不同的名称。我为 Hostgator 工作,并为大量客户做过这件事:)

于 2013-05-11T21:04:26.600 回答
0
<?php
/*
Plugin Name: Disable Canonical URL Redirection
Description: Disables the "Canonical URL Redirect" features of WordPress 2.3 and above.
Version: 1.0
Author: Mark Jaquith
Author URI: http://markjaquith.com/
*/ 

remove_filter('template_redirect', 'redirect_canonical'); 

?>

把它放在一个文件中,放在wordpress插件目录的一个文件夹中,激活就可以了。

于 2013-05-11T22:48:44.943 回答