没有css,js,图像文件正在网站上加载。我的网站基于codeigniter

时间:2017-10-24 09:57:05

标签: javascript php html css codeigniter

我的index.php文件位于pubic_html中,所有其他文件夹(如应用程序,资产,系统)都在那里。它们每个都有子文件夹和文件。我正在尝试恢复基于codeigniter的网站,我已经关注了安装guid,但是css文件存在问题。

在wesbite上只有文字,但没有css,没有图像。

以下是如何在文件中写入链接的示例。

<link rel="icon" type="image/png" href="<?php echo base_url();assets/img/logo.png">

here it is in the browser

此代码位于我的htaccess文件中:

RewriteEngine on

RewriteCond $1 !^(index\.php|assets|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^=]+=.*)$ index.php?controller=$1&$2 [L,QSA]
RewriteRule ^([^=]+=.*)$ index.php?$1 [L,QSA]
RewriteRule ^(.+)$ index.php?controller=$1 [L,QSA]

我正在附上网站的屏幕截图和我面临的问题。我已经尝试了一切。如果有人可以帮助,那将是值得赞赏的。感谢。

My website is showing like this

1 个答案:

答案 0 :(得分:1)

我找到了解决方案: 基本上我必须更改config.php文件强制URI_request https://www.formget.com/codeigniter-htaccess-remove-index-php/