Anchor CMSを実行していて、バージョン0.8にアップグレードしました。インストーラーを実行しようとすると、「入力ファイルが指定されていません」というエラーが表示されます。.htaccessの問題である可能性が高いと思いますが、正しい設定がどうあるべきかわかりません。
私のサイトはここにあります。
私の.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も使用しています。