未指定输入文件
我正在运行Anchor CMS,我刚刚升级到0.8版本。当我尝试运行安装程序时,我收到“未指定输入文件”错误。我相信这很可能是一个.htaccess问题,但我不确定正确的设置应该是什么。
我的网站可以在这里找到。
My .htaccess 设置为:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase {base}
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ {index} [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 index.php
</IfModule>
如果有帮助,我也使用GoDaddy作为托管服务提供商。