1

我刚刚从某人那里继承了一个 ExpressionEngine 站点,而没有太多关于它是如何组合在一起的文档的。我正在尝试设置一些 301 重定向,但 htaccess 文件被忽略了。我在与我们的索引文件相同的目录中有一个名为 .htaccess 的文件,但它没有被读取。

我们的 IT 部门说 Apache 中的 AllowOverride 设置为“全部”,他们怀疑问题出在 ExpressionEngine 内部。ExpressionEngine 中是否有可以启用/禁用 htaccess 的地方,或者这是 Apache 的事情?

谢谢!

4

1 回答 1

0

谢谢。这是我在 htaccess 文件中的内容:

# Standard .htaccess file

# Secure .htaccess file
<Files .htaccess>
order allow,deny
deny from all
</Files>

Redirect 301 /index.php/info_resources/sites http://www.cptc.edu/index.php/site_directory/


# Don't show any directory without an index file
Options -Indexes

# Dont list files in index pages
IndexIgnore *

# EE 404 page for missing pages
# May differ depending on where your template is located.
ErrorDocument 404 /index.php?/site/404
于 2013-02-07T17:47:51.107 回答