我已尝试在我的服务器上多次更改我的.htaccess文件(Linux,php CGI / FastCGI)
我的网络托管是一个经销商托管,我有两个面板CP和WHM
但是当我上传整个网站时,我只收到404错误,并按照我的配置,htaccess和控制器文件以及文件夹结构
文件夹结构
/
index.php
/application/
/application/views [Contains main view (index page)]
/application/controllers [Contains the main controller]
作为Code Igniter(3.0)的默认值
.htaccess文件[第一次]
DirectoryIndex index.php
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
.htaccess文件[第二次]
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|fonts|img|css|js|dashboard|support|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
配置文件
$config['base_url'] = '/';
$config['index_page'] = 'index.php?';
$config['uri_protocol'] = 'REQUEST_URI';
错误记录
ERROR - 2015-02-06 14:53:34 --> 404 Page Not Found: /index
ERROR - 2015-02-06 14:53:35 --> 404 Page Not Found: /index
ERROR - 2015-02-06 14:54:01 --> 404 Page Not Found: /index
我尝试将URI协议更改为CI中可能的所有选项,更改了htaccess,删除了访问权限。
现在没有什么对我有用
我的基本网址是http://pixelvision.com.br/
该网站在我的本地网络服务器上运行良好(Easy PHP Dev / Production) 并且在本地Web服务器上运行时不会返回任何错误。
但是当我发送整个网站(更新配置文件)并尝试为所有控制器运行返回时出现404错误
答案 0 :(得分:10)
我找到了使用Code Igniter 3.0的解决方案,控制器名称需要像这样" Pagecontrol"如果是" pagecontrol" CodeIgniter核心找不到控制器,库,视图等。