我有问题我有这个网站www.example.com 我上传了我的ci网站,当我尝试访问
时,该网站在我的localhost上运行良好 example.com/index.php/cont/method
这不起作用,如果我这样做:
example.com/?/index.php/cont/method
没关系。我在配置文件中尝试了不同的设置,但没有任何效果。如果您需要其他信息,我会为您提供,只需询问。
我也想知道如何摆脱index.php,因为我无法在互联网上的任何地方使用工作配置。
$config['base_url'] = 'http://www.example.com/';
$config['index_page'] = ''; / with and without index.php
$config['uri_protocol'] = 'AUTO' /PATH_INFO/REQUEST_URI
在localhost上:
$config['base_url'] = 'localhost;
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'AUTO'
我的本地主机上有apache,我的网络服务器上有nginx。