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

4

2 回答 2

3

尝试将最后一行更改为

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

它在 apache php-fcgi 配置上对我有用。

于 2012-05-01T15:00:42.663 回答
0

此消息表示您看不到站点目录。确定 index.php 存在并且它是可读的。在一些 nginx 配置中也没有使用 .htaccess

于 2012-04-26T14:30:07.393 回答