将 css 文件重写为控制器的操作

发布于 2024-12-08 04:22:02 字数 723 浏览 0 评论 0原文

我想使用 .htaccess 将 http://localhost/css/file.css 重写为 http://localhost/css/generate

可以吗?

它似乎不起作用。我所拥有的就是这个 .htaccess 和 Zend Controller css 以及操作 generate

如果我直接进入 localhost/css/generate 我有 css 输出,但是当我输入 localhost/css/ 时file.css 我得到 Not Found

这是我的 .htaccess

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^/css/file\.css$ /css/generate

RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

I would like to use .htaccess to rewrite http://localhost/css/file.css to http://localhost/css/generate

is it possible to do it?

it seems to not working. All I have is this .htaccess and Zend Controller css with action generate

if I go directly to localhost/css/generate I have css output but when I type localhost/css/file.css I get Not Found

this is my .htaccess

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^/css/file\.css$ /css/generate

RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

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

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

发布评论

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

评论(2

猫九 2024-12-15 04:22:02

将您的 htaccess 更改为:

RewriteEngine On

RewriteRule ^/css/file\.css$ /css/generate [L]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

[L] 表示“最后”,如果找到匹配项,它将停止运行任何后续规则。

Change your htaccess to this:

RewriteEngine On

RewriteRule ^/css/file\.css$ /css/generate [L]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

the [L] means "last", which stops it running any subsequent rules if a match was found.

寂寞花火° 2024-12-15 04:22:02

是的。将其放入顶级 .htaccesshttpd.conf 中并重新启动 Apache。

RewriteEngine On

RewriteRule ^/css/file\.css$ /css/generate

Yes. Place this in your top level .htaccess or httpd.conf and restart Apache.

RewriteEngine On

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