使用 rewriterule 时网页上没有图像

发布于 2024-11-09 03:55:09 字数 309 浏览 0 评论 0原文

我有一个像这样的 .htaccess 文件:

RewriteRule ^(iphone)/(.*)\.html$ /$2.php?specialversion=$1 [L,QSA]

我的问题是在查看 http://www.example 时。 com/iphone/mypage2.html,mypage2.php 被调用并输出内容,但所有图像甚至 CSS 都不起作用。我该如何解决这个问题?

I have a .htaccess file like this:

RewriteRule ^(iphone)/(.*)\.html$ /$2.php?specialversion=$1 [L,QSA]

My problem is that when viewing http://www.example.com/iphone/mypage2.html, mypage2.php gets called and output contents but none of the images or even the CSS are working. How can I solve this?

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

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

发布评论

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

评论(1

简单爱 2024-11-16 03:55:09

当设置 GET specialversion 时,您可以在 mypage2.php(以及其他页面)的 HTML 中使用新的 HEAD 标记。否则,图像将从 http://www.example.com/iphone/images/...或类似的,不重定向):

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

当然,您可以在 .htaccess 中使用另一个 RewriteRule 代替。

RewriteRule ^(iphone/(?:images|style))/(.*)$ /$2.php?specialversion=$1 [L,QSA]

此 RewriteRule 重写 imagesstyle 目录。请记住,如果客户端同时使用主站点和 iphone 站点(这可能不是问题),则不会使用缓存。

You could use a new HEAD tag in your HTML in mypage2.php (and the other pages), when GET specialversion is set. The images will otherwise be fetched from http://www.example.com/iphone/images/... or similar, which is not redirected):

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

Of course, you could use another RewriteRule in the .htaccess instead.

RewriteRule ^(iphone/(?:images|style))/(.*)$ /$2.php?specialversion=$1 [L,QSA]

This RewriteRule rewrites images and style dirs. Remember that the cache wouldn't be used if a client uses both the main site and the iphone site (which probably isn't a problem).

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