在godaddy共享主机上的子域上的Codeigniter 3

时间:2016-03-06 20:23:41

标签: php apache .htaccess codeigniter mod-rewrite

所有 请帮我在subdomain上传codeigniter项目,我的项目不在subdomain上工作,托管在godaddy服务器上。我收到了错误。我相信,你会帮助我的。请查看以下设置:

的config.php

$config['base_url']    = "http://www.example.com/example-subdomain/";
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'REQUEST_URI';

routes.php文件

$route['default_controller'] = 'login';

应用程序填充程序中的htaccess

Deny from all

子域根目录中的htaccess

<IfModule mod_rewrite.c>
RewriteEngine On

# Send would-be 404 requests to Craft
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/(favicon\.ico|apple-touch-icon.*\.png)$ [NC]
RewriteRule (.+) index.php?p=$1 [QSA,L]

0 个答案:

没有答案