Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将我的 codeigniter 应用程序上传到演示服务器。主页打开正常,但其他页面出现错误。
我将base url配置文件中的更改为:
base url
$config['base_url'] = 'http://globalcfos.com/cfoask/';
它在本地运行良好。知道如何解决吗?
看起来您托管在 GoDaddy 上,之前遇到过同样的问题,将 .htaccess 文件更改为以下内容应该可以解决它。
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*) index.php?/$1
见http://ellislab.com/forums/viewthread/77847/