如何使用codeigniter.htaccess中实现动态子域?

最佳答案

确保在您的站点上启用了子域。当您输入test.yoursite.com时,它应该带您到网站的欢迎页面。相反,如果它给出DNS查找错误,则意味着您的站点上未启用子域。

要在您的站点上启用子域,请将*.yoursite.com条目添加到DNS区域记录中。

其次,将以下代码插入.htaccess文件中,并适当替换yoursite

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #codeigniter specific rule
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #codeigniter specific rule
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #this rule removes www from the URL if its used
    RewriteCond %{HTTP_HOST} ^www.
    RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]

    #the auth system URIs which don't have subdomains
    RewriteCond %{HTTP_HOST} ^yoursite.
    RewriteRule ^(signup|signin|forgot_password)/?$ index.php?/auth/$1 [L]

    #this rule handles the subdomains
    RewriteCond %{HTTP_HOST} ^([a-z0-9]+).yoursite.com
    RewriteRule ^(.*)$ index.php?/public_site/%1/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    ErrorDocument 404 /index.php
</IfModule>

如有必要,添加更多规则以处理身份验证系统或子域。我知道我为我的网站做了一些漂亮的URI。

重要的提示:

我发现默认情况下,无需上述任何规则,子域URI就可以与codeigniter很好地配合使用。您可以使用test.yoursite.com/# URI而不是www.yoursite.com/#来访问所有站点。但是URI并不漂亮,访问URI的方式不止一种。

因此,如果使用上述规则,它将为您提供漂亮的URIs ,更重要的是,将为您提供唯一的URIs 。因此,如果使用上述规则,则注册页面只会获得一个URI,即http://yoursite.com/signup

关于.htaccess - 如何使用.htaccess在codeigniter中实现动态子域?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9732366/

10-16 16:34