我有一个带有标准 ExpressionEngine htaccess 代码的 MT 站点,用于删除 index.php 并且主页可以正常工作,如果我将 index.php 放在 URL 中,所有其他页面都可以正常工作。没有它,我得到“没有指定输出文件”。它适用于我的本地和非 MT 服务器,所以我知道它是一个环境问题。需要更改 htaccess 中的哪些内容才能使其在 MT 上运行?
<IfModule mod_rewrite.c>
# Enable Rewrite Engine
# ------------------------------
RewriteEngine On
RewriteBase /
# Use Dynamic robots.txt file
# ------------------------------
RewriteRule robots\.txt /robots.php [L]
# Redirect index.php Requests
# ------------------------------
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/admin/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]
# Standard ExpressionEngine Rewrite
# ------------------------------
RewriteCond $1 !\.(css|js|gif|jpe?g|png) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>