wordpress访问文件问题

时间:2015-09-23 15:22:24

标签: php wordpress

我之前安装了一个wordpress主题,我在访问它的部分时遇到了一些问题 - 对主题的支持修复了它,并告诉我这是由于重写引擎需要打开而不是关闭 - 我已安装一个不同的主题,我遇到了类似的问题,并想知道是否有人可以告诉我如何纠正这个代码来打开它?

这是访问文件中的确切代码 - 我应该将其更改为什么?

# Switch rewrite engine off in case this was installed under HostPay.
RewriteEngine Off

SetEnv DEFAULT_PHP_VERSION 53

DirectoryIndex index.cgi index.php

# BEGIN WordPress

# END WordPress 

1 个答案:

答案 0 :(得分:0)

打开重写引擎更改

RewriteEngine Off

RewriteEngine On

首先检查Apache中是否启用了重写模块

<IfModule mod_rewrite.c>
RewriteEngine On
</IfModule>