Centos - .htaccess 文件不起作用

Centos - .htaccess 文件不起作用

我刚刚用 Centos 6 设置了一台新服务器,添加了一个虚拟站点,然后尝试添加一个 .htaccess 文件以在 .html 扩展中运行 PHP(从另一个工作设置复制而来),但该命令被忽略。我尝试将错误重定向添加到访问文件,但它们也被忽略了。

访问文件的内容为:

IndexIgnore *

RewriteEngine on

RewriteCond %{SCRIPT_FILENAME} !-f 
RewriteCond %{SCRIPT_FILENAME} !-d 


RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html


LimitRequestBody 0

这是我的 httpd.conf 文件中的内容

<Directory  /home/newsite/public_html>
    Options -Indexes FollowSymLinks

    AllowOverride All

    Order allow,deny
    Allow from all
</Directory>

我已在线搜索但找不到我可能需要做的其他事情。

目前,HTML 文件中的 PHP 只是作为普通 HTML 输出。

相关内容