通配符 apache mod_rewrite

发布于 2024-11-03 08:39:56 字数 746 浏览 0 评论 0原文

我正在尝试编写一个 mod_rewrite 来像这样

  • domain.com =>; index.php
  • anything.anotherdomain.com => index.php/anything
  • foo.blabla.com =>; index.php/foo
  • wildcard.maybeanother.com/bar/bla => index.php/wildcard/bar/bla

这是我的配置,但 apache 只是抛出 500 错误。

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{HTTP_HOST} ^*\.*
    RewriteRule ^(*\.*)$ index.php/$1/$2 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php/$1 [L]

</IfModule>

有人知道这有什么问题吗? :-)

提前致谢!

I'm trying to write a mod_rewrite to work like this

  • domain.com => index.php
  • anything.anotherdomain.com => index.php/anything
  • foo.blabla.com => index.php/foo
  • wildcard.maybeanother.com/bar/bla => index.php/wildcard/bar/bla

Here is the config I have, but apache just throws a 500 error.

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{HTTP_HOST} ^*\.*
    RewriteRule ^(*\.*)$ index.php/$1/$2 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php/$1 [L]

</IfModule>

Has anybody got any idea whats wrong with this? :-)

Thanks in advance!

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

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

发布评论

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

评论(1

超可爱的懒熊 2024-11-10 08:39:56

尝试一下:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+\.[^.]+$
RewriteRule ^$ index.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+\.[^.]+$
RewriteRule ^(.*)$ index.php/$1 [L]  

RewriteCond %{HTTP_HOST} ^([^.]+)\.[^.]+\.[^.]+\.[^.]+$
RewriteRule ^$ index.php/%1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^([^.]+)\.[^.]+\.[^.]+\.[^.]+$
RewriteRule ^(.*)$ index.php/%1/$1 [L]

Give this a try:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+\.[^.]+$
RewriteRule ^$ index.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+\.[^.]+$
RewriteRule ^(.*)$ index.php/$1 [L]  

RewriteCond %{HTTP_HOST} ^([^.]+)\.[^.]+\.[^.]+\.[^.]+$
RewriteRule ^$ index.php/%1 [L]

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