0

我在让 CodeIgniter 使用我的共享主机帐户时遇到问题。URL 是http://test.tallgreentree.com。它没有给我一个 .php 错误,但它显示了我在地址栏中键入的所有内容的 404 页面。

这是我的 config.php 文件的开头。

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
|   http://example.com/
|
*/
$config['base_url'] = "http://test.tallgreentree.com/";

/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = "index.php";

/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string.  The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO'            Default - auto detects
| 'PATH_INFO'       Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'     Uses the REQUEST_URI
| 'ORIG_PATH_INFO'  Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = "AUTO";

将 CodeIgniter 与子域一起使用时是否存在已知问题?这可能是什么原因造成的?我尝试了多种配置,但似乎没有什么对我有用。我应该向我的托管服务提供商检查哪些服务器设置?

感谢大家的时间和帮助。

4

3 回答 3

1

改变

$config['uri_protocol'] = "AUTO";

$config['uri_protocol'] = "REQUEST_URI"

看看能不能解决

另外,您的类控制器名称是否与文件名相同?

文件名 = test.php

class Test ...
于 2009-02-19T18:51:32.627 回答
0

我用“REQUEST_URI”得到了这个,但我只能点击我的主页。所有其他链接(到控制器)总是刷新到主页。它显示正确的 URL 但无论您单击哪个 URL 都会将您带到主页,这有点奇怪。

有任何想法吗?我确实有一个 .htaccess 文件,

RewriteBase 上的 RewriteEngine /testci RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(. )$ /index.php/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(. ) $ index.php/$1 [L] RewriteCond $1 !^(index.php|images|captcha|css|js|robots.txt) addType text/css .css

于 2009-09-23T18:10:47.497 回答
0

在 config.php 文件中进行 2 处更改

第一个是:

   `$config['uri_protocol'] = "AUTO";`

   `$config['uri_protocol'] = "REQUEST_URI"`

第二个是:

    $config['index_page'] = 'index.php';

    $config['index_page'] = 'index.php?';
于 2014-04-22T06:58:01.277 回答