我开发了一个在localhost上完美运行的网站。但是,当我正在托管css
时,js
,images
和fonts
没有链接。
您可以在http://think-exam.site88.net/
查看这是我的config.php
$config['base_url'] = '';
$config['index_page'] = 'index.php';
url
也加载了hepler。
文件夹结构类似于
- root
-public html
- application
- system
- assets
- css
- js
index.php
提前致谢。
答案 0 :(得分:2)
在您正在使用的项目中:
http://31.170.162.63/
在您的网站中,我尝试访问此图片:
http://31.170.162.63/assets/images/logo-2.gif
此网址返回404未找到的网页。
当我使用相同的图像测试此网址时:
http://think-exam.site88.net/assets/images/logo-2.gif
此网址可以正常使用。
您实际需要什么:
您需要将base_url()
文件中的config.php
设置为:
$config['base_url'] = 'http://think-exam.site88.net/';
并且您可以在您的应用程序中使用:
<?=base_url()?>assets/images/logo-2.gif