成功更改Apache服务器端口后,我的项目无法打开。 我可以使用新端口num localhost:8012 / phpmyadmin访问管理面板。
我在xampp服务器上工作。 昨天我因为类项目而安装了sql server。 我已经改变了xampp Apache的端口监听:8012和ssl端口到1443。 我可以使用链接localhost:8012 / phpmyadmin打开管理面板这是给我我的面板但是当我尝试使用link localhost打开我的项目时:8012 / health-care /(而不是localhost / health-care /那是完美的工作)现在我的索引登录页面没有任何css图像等打开,输入信息后没有其他页面正常工作。
将codeigniter格式的数据库配置中的服务器名称更改为localhost,将常量中的资源url更改为define('ASSET_URL', "http://localhost:8012/health-care/assets/");
,只有索引页面正在加载,而不是其他人
请帮助解决这个问题。我不能失去工作。请帮忙
答案 0 :(得分:1)
问题解决了。
在config.php中首先更改三行,在constants.php中保留两行
$config['base_url'] = 'http://localhost/health-care/';
到
$config['base_url'] = 'http://localhost:8012/health-care/';
和第二个来自:
define('ASSET_URL', "http://localhost/health-care/assets/");
为:
define('ASSET_URL', "http://localhost:8012/health-care/assets/");
最后一张图片目录来自:
$images_base_path = "http://localhost/health-care/system_data/images/";
为:
$images_base_path = "http://localhost:8012/health-care/system_data/images/";
并完成了。感谢RoseHosting给我的想法