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

时间:2012-03-16 05:27:29

标签: .htaccess mod-rewrite codeigniter-2 subdomain wildcard-subdomain

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

3 个答案:

答案 0 :(得分:0)

确保您网站上已启用子域。当您进入test.yoursite.com时,它会带您进入您网站的欢迎页面。如果它提供DNS查找错误,则表示您的站点上未启用子域。

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

其次,在您的.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的方式不止一种。

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

答案 1 :(得分:0)

此代码适用于我的网站,您可以将您的网站移动到您的其他域或文件夹(无论您想要什么)。

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php|application/assets|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
</IfModule>

答案 2 :(得分:0)

此规则处理子域

RewriteCond %{HTTP_HOST} ^([a-z0-9]+).yoursite.com.  should probably also include the hypen -.  RewriteCond %{HTTP_HOST} ^([a-z0-9-]+).yoursite.com.