CSS 和 javascript 未加载重写条件?

发布于 2024-12-15 06:30:02 字数 1171 浏览 0 评论 0原文

可能的重复:
CSS 和 javascript 未在重写规则中加载

仅使用重写后规则

RewriteEngine On
 RewriteRule ^profile.php$ profile.php

,当我加载 profile.php 时,css 和 javascript 正在加载,

但是当更改规则并添加条件

RewriteEngine On
RewriteCond %{REQUEST_URI} !/profile.php$
 RewriteRule ^profile.php$ profile.php

时,js 和 css 不会加载

profile.php 的编码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-…
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <title>Untitled Document</title>
 <link rel="stylesheet" href="http://localhost/css/profile.css" />
 </head>
 <body>
 <table><tr><td><div class="image"><ul><li>My</li></ul></div>
 </td></tr></table>
 </body></html>

Possible Duplicate:
Css and javascript Not Loading in rewrite rule

After using only rewrite rule

RewriteEngine On
 RewriteRule ^profile.php$ profile.php

and when i load profile.php the css and javascript are loading

but when make a change in rule and add condition

RewriteEngine On
RewriteCond %{REQUEST_URI} !/profile.php$
 RewriteRule ^profile.php$ profile.php

and then the js and css are not loading

Coding of profile.php is

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-…
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <title>Untitled Document</title>
 <link rel="stylesheet" href="http://localhost/css/profile.css" />
 </head>
 <body>
 <table><tr><td><div class="image"><ul><li>My</li></ul></div>
 </td></tr></table>
 </body></html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜柠檬 2024-12-22 06:30:02

这是因为 RewriteCond 说:仅当 url 不仅包含 /profiles 时才应用以下RewriteRule

您应该这样写:(

RewriteCond %{REQUEST_URI} /profile.php$

不带感叹号)

添加:
如果您不希望 mod_rewrite 规则应用于脚本和其他特定文件请求,您应该为它们编写规则。

例如

RewriteRule \.(css|jpe?g|gif|png)$ - [L]

it's because the RewriteCond says : apply the followingRewriteRuleonly if the url doesn't only contain /profiles

you should write it like :

RewriteCond %{REQUEST_URI} /profile.php$

(without the exclamation mark)

in add:
If you don't want your mod_rewrite Rules to be apply on scripts and other specific files request, you should write a Rule for them.

E.g.

RewriteRule \.(css|jpe?g|gif|png)$ - [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文