如何在codeigniter
with中实现动态子域.htaccess
?
问问题
3984 次
3 回答
0
确保在您的站点上启用了子域。当您输入 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 的方法不止一种。
因此,如果您使用上述规则,它将为您提供漂亮的 URI,更重要的是,将为您提供唯一的 URI。因此,如果您使用上述规则,您将只会获得一个注册页面的 URI,即http://yoursite.com/signup
.
于 2015-05-18T11:42:13.537 回答
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>
于 2016-02-27T07:23:26.553 回答
0
此规则处理子域
RewriteCond %{HTTP_HOST} ^([a-z0-9]+).yoursite.com. should probably also include the hypen -. RewriteCond %{HTTP_HOST} ^([a-z0-9-]+).yoursite.com.
于 2016-09-06T09:54:14.027 回答