htaccess、urlrewriting和子域名,怎么出现异常?

发布于 2024-12-14 01:57:15 字数 440 浏览 0 评论 0原文

我正在这个网站上工作: www.montreuxjazz.com

在那里,我们放置了一个 htaccess 来重写 url:

RewriteRule ^([^\/]*)/([^\/]*)$  index.php?pageid=$1&newsid=$2 [L]

不幸的是,这个 htaccess 避免了对 http 的访问://newsletter.montreuxjazz.com/noel2011_en.html

您知道如何修改 htaccess 以便 newsletter.montreuxjazz.com/ 上的所有内容都可以访问吗?

预先感谢您的帮助! 再见, 大卫

I am working on this website:
www.montreuxjazz.com

There, we put a htaccess to rewrite the urls:

RewriteRule ^([^\/]*)/([^\/]*)$  index.php?pageid=$1&newsid=$2 [L]

Unfortunately, this htaccess avoid the access to http://newsletter.montreuxjazz.com/noel2011_en.html .

Do you know how to modifiy the htaccess so that everything which is on newsletter.montreuxjazz.com/ become accessible?

Thank you in advance for your help!
See you,
David

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

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

发布评论

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

评论(1

你げ笑在眉眼 2024-12-21 01:57:15

如果仅在规则会将您引向不存在的路径时才处理规则呢?

RewriteCond %{REQUEST_FILENAME}  !-d
RewriteRule ^([^/])/([^/])$    index.php?pageid=$1&newsid=$2  [L]

What about only processing your rule when it would otherwise take you to a nonexistent path?

RewriteCond %{REQUEST_FILENAME}  !-d
RewriteRule ^([^/])/([^/])$    index.php?pageid=$1&newsid=$2  [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文