gpt4 book ai didi

php - 添加 .htaccess 尾部斜杠和 css 变得糟糕

转载 作者:行者123 更新时间:2023-11-28 07:41:48 25 4
gpt4 key购买 nike

我想用 .htaccess 在我的 url 后面加一个斜线

我的.htaccess

        RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ $1.php [NC,L]

当我尝试使用 www.example.com/about-us 时它工作正常但是当 Url 是 www.example.com/about-us/ 我的css url 不会加载网站变得可怕。抱歉我的英语不好。

最佳答案

在重写pretty URL 之后,您需要使用绝对URL 或在您网站的head 部分使用base 标记。

使用 CSS 在路径前使用 /

<link rel="stylesheet" type="text/css" href="/path/to/style.css">

或者您可以使用底座。

<head>
<base href="http://www.example.com/">
</head>

关于php - 添加 .htaccess 尾部斜杠和 css 变得糟糕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30915360/

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