Apache 重写条件

发布于 2024-11-05 03:47:41 字数 548 浏览 0 评论 0原文

我有以下 rewritecond:

RewriteCond %{REQUEST_FILENAME} \.(css|js)$

效果很好,可以处理如下请求:

http://domain.com/js/script.jshttp://domain.com/css/ stylesheet.css

但是我想排除模式是否为:

http://domain.com/projects/{varname}/{varname}/download/{varname}/{varname}.js

http://domain.com/projects/{varname}/{varname}/download/{varname}/{varname}.css

其中 {varname} 可以是任何东西。

是否可以更改我的 RewiteCond 以排除下载?

I have the following rewritecond:

RewriteCond %{REQUEST_FILENAME} \.(css|js)$

Which works great and takes care of requests like:

http://domain.com/js/script.js and http://domain.com/css/stylesheet.css

However I would like to exclude if the pattern is:

http://domain.com/projects/{varname}/{varname}/download/{varname}/{varname}.js

or

http://domain.com/projects/{varname}/{varname}/download/{varname}/{varname}.css

Where {varname} can be anything.

Is it possible to change my RewiteCond in a way so that the downloads are excluded?

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

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

发布评论

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

评论(1

小草泠泠 2024-11-12 03:47:41

您可以在当前之前添加另一个 RewriteCond

RewriteCond %{REQUEST_FILENAME} !\/download\/
RewriteCond %{REQUEST_FILENAME} \.(css|js)$
RewriteRule ....

希望有帮助。

You can just add another RewriteCond before the current:

RewriteCond %{REQUEST_FILENAME} !\/download\/
RewriteCond %{REQUEST_FILENAME} \.(css|js)$
RewriteRule ....

Hope the helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文