2012-04-26 3 views
0

私のサイトはフロントエンドのFlashとバックエンドのKohanaを使用しています。そして私のバックエンドのパネルは地元で働いていました。しかし、リモートサーバー上の管理者パネルを開くときに、この問題が発生する:リモートサーバー上のサイト: "入力ファイルが指定されていません。"

"入力ファイルが指定されていません。

どうすればこの問題を解決できますか?

編集:私の.htaccessファイルザッツ

# Turn on URL rewriting 
RewriteEngine On 
# Put your installation directory here: If your URL is www.example.com/, 
# use/If your URL is www.example.com/kohana/, use /kohana/ 
RewriteBase/
# Do not enable rewriting for files or directories that exist 

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

# For reuests that are not actual files or directories, Rewrite to 
# index.php/URL 

#RewriteRule ^/$ /index.php?langKey=$1 [QSA] 
RewriteRule ^(.*)$ /index.php/$1 [PT,L] 

私が書くmysite.com/index.php/adminバックエンドが働いていました。しかし、私はmysite.com/adminを希望します

+0

私はあなたがGodaddyのホスティングを使っていたと確信しています:) –

答えて

0

このメッセージは、あなたがサイトディレクトリを見ることができないことを意味します。 index.phpが存在し、読み込み可能であることを確認してください。 また、いくつかのnginxの設定で.htaccessファイルが使用されていない

+0

私の問題を編集しました。 – Karmacoma

2

てみそれは、Apache、PHP-fcgiの設定に私のために働い

RewriteRule .* /index.php?kohana_uri=$0 [QSA] 

に最後の行を変更します。

関連する問題