用户名作为laravel上的子域
Posted
技术标签:
【中文标题】用户名作为laravel上的子域【英文标题】:Username as subdomain on laravel 【发布时间】:2013-01-02 07:31:35 【问题描述】:我已经设置了一个通配符子域 *.domain.com 并且我正在使用以下 .htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %HTTP_HOST !www\.
RewriteCond %HTTP_HOST (.*)\.domain\.com
RewriteRule .* index.php?username=%1 [L]
一切都很完美。
我想在 laravel 中实现这个方法。主要是我希望在您访问 username.domain.com 时显示我的用户个人资料。关于实现这一目标的任何想法?
【问题讨论】:
我想你正在使用 Laravel 3 ?或者你已经开始使用 laravel 4 了吗? 我还在使用 Laravel 3。 Laravel 4 位用户:滚动过去接受的答案。 【参考方案1】:虽然我不能说出您的情况的完整解决方案是什么,但我将从请求中的 SERVER_NAME 值开始(PHP:$_SERVER['SERVER_NAME']),例如:
$username = str_replace('.domain.com', '', Request::server('SERVER_NAME'));
确保您还清理/清理了用户名,然后您可以从那里从用户名中查找用户。比如:
$user = User::where('username', '=', $username)->first();
如果 SERVER_NAME 不是 www.domain.com 或 domain.com,您可以在路由文件的某个位置有条件地定义一个路由,但我相信其他人可以为此部分想出一个更有说服力的方法。 ..
【讨论】:
【参考方案2】:能够添加子域,如子域 *。 domain.com 应该由您的托管服务提供商切换,在 .htaccess 中您不能配置对子域的支持
【讨论】:
我联系了托管支持,一切正常。但我需要一个想法如何在 laravel 3 中实现它。【参考方案3】:这很容易。首先 - 不要更改 Laravel 提供的默认值的 .htaccess
文件。默认情况下,对您的域的所有请求都将被路由到您的 index.php
文件,这正是我们想要的。
然后在您的 routes.php
文件中使用“之前”过滤器,它会在完成其他任何操作之前过滤对您的应用程序的所有请求。
Route::filter('before', function()
// Check if we asked for a user
$server = explode('.', Request::server('HTTP_HOST'));
if (count($server) == 3)
// We have 3 parts of the domain - therefore a subdomain was requested
// i.e. user.domain.com
// Check if user is valid and has access - i.e. is logged in
if (Auth::user()->username === $server[0])
// User is logged in, and has access to this subdomain
// DO WHATEVER YOU WANT HERE WITH THE USER PROFILE
echo "your username is ".$server[0];
else
// Username is invalid, or user does not have access to this subdomain
// SHOW ERROR OR WHATEVER YOU WANT
echo "error - you do not have access to here";
else
// Only 2 parts of domain was requested - therefore no subdomain was requested
// i.e. domain.com
// Do nothing here - will just route normally - but you could put logic here if you want
);
编辑:如果您有国家/地区扩展名(即 domain.com.au 或 domain.com.eu),那么您需要更改计数($server)以检查 4,而不是 3
【讨论】:
一切正常,但是当我使用 SUBDOMAIN.DOMAIN.COM 访问网站时,Auth 组件总是说我没有登录。有什么想法吗? 可能是 cookie 问题 - 检查此链接:forums.laravel.io/viewtopic.php?id=1445 史诗,非常感谢。如果将其他变量传递给该 url 怎么办?比如页面,分页的东西等等? 它将根据您的路由、控制器等正常路由【参考方案4】:Laravel 4 具有开箱即用的功能:
Route::group(array('domain' => 'account.myapp.com'), function()
Route::get('user/id', function($account, $id)
// ...
);
);
Source
【讨论】:
您知道如何为此设置 DNS 吗?以上是关于用户名作为laravel上的子域的主要内容,如果未能解决你的问题,请参考以下文章
cname vhosts 将 cname 设置为动态子域 laravel