gpt4 book ai didi

php - Codeigniter + CSS 不能正常工作,可能是 baseurl

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:06:00 24 4
gpt4 key购买 nike

这个问题问了好几次了,我研究了下还是没法解决。在我的一个 View 文件中,我有(引用我的 css):

link rel="stylesheet" type="text/css"  href="/application/views/screen.css"

css文件在:

- www
- application
- view
- css
- screen.css
- system

我还尝试在 -www 下的同一文件夹中设置 css 并直接通过

使用它
link rel="stylesheet" type="text/css"  href="css/screen.css"

我的基本 url 设置为 "" 因为我在本地开发。这是问题吗?我正在使用 wamp 服务器。

那么问题是什么?谁能帮忙?

最佳答案

您不能将您的 CSS 文件或要提供给浏览器的文件放在应用程序文件夹中,因为出于安全原因,它受到保护,将 .htaccess 文件设置为“拒绝所有”您的 CSS、JS、图像文件等,需要在应用程序文件夹之外。

将您的 CSS 文件放在“www”文件夹中名为“css”的文件夹中,使其不在“应用程序”或“系统”中。然后确保使用以下内容(注意前导斜杠,表示绝对 URL):

href="/css/screen.css"

改用这个:

# If your default controller is something other than
# "welcome" you should probably change this
RewriteCond $1 !^(index\.php|css)
RewriteRule ^(.*)$ /index.php/$1 [L]

关于php - Codeigniter + CSS 不能正常工作,可能是 baseurl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13783837/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com