htaccess将所有子域重定向到同一目录

时间:2016-04-08 10:22:21

标签: apache .htaccess

我希望能够将所有子域重定向到文件夹:

RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$ 
RewriteRule (.+)$ "http://example.com/subdomains/%1" [L,P]

例如,如果某些访问sub1.example.com,它会保留网址但显示example.com/subdomains/sub1,如果sub1目录不存在,则会显示example.com/404

这可能吗?

我尝试了上面的代码,但它显示了我:

Forbidden
You don't have permission to access /index.php on this server.

Wordpress说:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

在我的htaccess文件的顶部是:

RewriteEngine On
DirectoryIndex index.php

RewriteCond %{HTTP_HOST} admin.domain.com$
RewriteRule ^(.*)$ /admin/system/$1 [L]

2 个答案:

答案 0 :(得分:10)

当您使用完整网址作为目标时,您的上述.htaccess会从外部重定向来电。

在你的问题中,你说你想保留主机名,所以我认为这是要求。

0)启用重写引擎

RewriteEngine On

1)将已知子域重写到/ subdomains

中的目录
# Rewrite known subdomains to /subdomains/{subdomain}/
RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$
RewriteCond %{REQUEST_URI} !^/subdomains [NC]
RewriteCond %{REQUEST_URI} !^/404 [NC]
RewriteRule ^(.+)$ /subdomains/%1/ [L]
  1. 当我们遇到带子域的请求时,
  2. 我们没有将其重写为/ subdomains
  3. 我们没有将其重写为/ 404
  4. 然后将其重写为/ subdomains / {subdomain} /
  5. 所以,如果请求是

    http://foo.example.com/hello
    

    浏览器中的URL保持不变,但内部映射到

    /subdomains/foo/
    

    2)将未知子域重写为/ 404

    # Rewrite missing unknown subdomains to /404/
    RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$
    RewriteCond %{REQUEST_URI} ^/subdomains [NC]
    RewriteCond %{REQUEST_URI} !^/404 [NC]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l
    RewriteRule ^(.+)$ /404/ [L]
    
    1. 当我们遇到带子域的请求时,
    2. 我们已将其重写为/ subdomains
    3. 我们没有将其重写为/ 404
    4. 并且它不作为文件存在
    5. 并且它不作为目录存在
    6. 并且它不作为符号链接存在
    7. 然后将其重写为/ 404
    8. 所以,如果请求是

      http://bar.example.com/hello
      

      浏览器中的URL保持不变,但内部映射到

      /subdomains/bar/
      

      来自1的第一个RewriteRule

      如果/subdomains/bar/不存在,则来自2的第二个RewriteRule将启动并在内部将其映射到

      /404/
      

      3)测试环境

      我实际使用示例代码测试了所有这些代码,可在此处获取:https://github.com/janpapenbrock/stackoverflow-36497197

答案 1 :(得分:3)

我说您遇到了许可问题。我猜你的Apache服务器运行为Select * from @CompletedTotalValues用户。使用apache授予chmod访问此路径的权限。