gpt4 book ai didi

css - Internet Explorer 模式重写

转载 作者:行者123 更新时间:2023-11-28 10:26:22 43 4
gpt4 key购买 nike

我的网站结构如下

/

/元素

我的htaccess放在/文件夹下,规则如下

RewriteBase /projects/  
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^projects/([^/]*)/([^/]*)/$ /projects/index.php?location=$1&title=$2 [L]
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

我希望有这样的 url :

http://www.domain.com/projects/location/title

但是我的问题是,css 和 js 文件也以这种方式加载到 IE9 中domain.com/projects/location/title/css.filedomain.com/projects/location/title/js.file还有图像文件夹

我正在使用 absolute pass,它适用于 chrome 和 firefox但仍然不在 IE 中。

有人可以帮忙吗?

编辑我在用但问题仍然是 IE

最佳答案

如果放置在文档根目录中,则将此代码放入您的 .htaccess 中:

AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^projects/([^/.]+)/([^/.]+)/?$ /projects/index.php?location=$1&title=$2 [L,QSA]

RewriteBase/projects/只有放在/projects/.htaccess中才需要。

关于css - Internet Explorer 模式重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23721534/

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