在此服务器上找不到请求的URL /文件夹/控制器/方法

时间:2017-11-25 18:03:49

标签: apache .htaccess codeigniter amazon-web-services

我将我的网络应用程序迁移到了aws服务器上。当我输入域名时,它会加载我的web-app的登录页面。输入用户名和密码后单击提交按钮,它会显示以下错误:

  

未找到

     

在此服务器上找不到请求的URL / bitcoin_new / Login / login_check。

     

Apache / 2.4.7(Ubuntu)服务器,网址为www.techseed.co.in端口80

这是我的.htaccess文件代码

RewriteEngine on
RewriteBase /folder_name/
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

为什么我会收到此错误?

1 个答案:

答案 0 :(得分:0)

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L] 
</IfModule>

你为什么不尝试这个?