时间:2021-07-01 10:21:17 帮助过:3人阅读
最近学PHP,到第三章的时候卡住了。我引用了一个HTML模板,但是这个模板无法引用css文件,下图是这个HTML模板:
Your Website
catchy slogan...
- Home Page
- Calculator
- link three
- link four
- link five
但是,我通过在位于表头中的标签里加入:
它又工作了。通过审查源代码发现所有CSS代码都集中到这个HTML文件来了。我知道这样不好,但有没有办法解决?
还有,我在网站根目录里放入 *.html
文件提示 File not found.
(能解析*.php
)。
Nginx配置文件:
server {
listen 80 default_server;
root /var/www/html;
index index.html index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/error.log error;
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
location ~ /\.ht {
deny all;
}
}
=====================UPDATE on 2016.02.16 00:56===================
这是修改后的代码:
对,它能工作:
我的项目文件结构:
最近学PHP,到第三章的时候卡住了。我引用了一个HTML模板,但是这个模板无法引用css文件,下图是这个HTML模板:
Your Website
catchy slogan...
- Home Page
- Calculator
- link three
- link four
- link five
但是,我通过在位于表头中的标签里加入:
它又工作了。通过审查源代码发现所有CSS代码都集中到这个HTML文件来了。我知道这样不好,但有没有办法解决?
还有,我在网站根目录里放入 *.html
文件提示 File not found.
(能解析*.php
)。
Nginx配置文件:
server {
listen 80 default_server;
root /var/www/html;
index index.html index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/error.log error;
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
location ~ /\.ht {
deny all;
}
}
=====================UPDATE on 2016.02.16 00:56===================
这是修改后的代码:
对,它能工作:
我的项目文件结构:
相对路径写错了吧 试试把路径改成你php引用的一样 还有把link那一行往下挪
css那个你看下是不是路径问题
相对路径
我看你模版是两个点,也就是上一级目录
style标签下则是一个点
对了,用Link的方式引用这个路径./includes/style.css
还是不行。
为何要用PHP引用css文件呢?这样做不科学啊
css引用都是用
这种形式的 = =,你那种是php的include文件,css不用那种的
路径的问题吧,你是在 header.html 里面引入css出问题的?
应该是 ./style.css
或者是../includes/style.css 这样吧
使用绝对路径试试 可以生效再改成相对的