9

我已经设置了一个通配符子域 *.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 时显示我的用户个人资料。关于实现这一目标的任何想法?

4

4 回答 4

23

这很简单。首先 - 不要更改.htaccessLaravel 提供的默认文件。默认情况下,对您的域的所有请求都将被路由到您的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

于 2013-01-22T13:57:44.650 回答
13

Laravel 4 开箱即用了这个功能:

Route::group(array('domain' => '{account}.myapp.com'), function() {

    Route::get('user/{id}', function($account, $id) {
        // ...
    });

});

来源

于 2013-02-23T16:32:49.037 回答
2

虽然我不能说出您的情况的完整解决方案是什么,但我将从请求中的 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,您可以在路由文件中的某个位置有条件地定义一个路由,但我相信其他人可以为此部分想出一个更有说服力的方法......

于 2013-01-21T16:44:31.493 回答
0

能够添加子域,如子域 *。domain.com 应该由您的托管服务提供商切换,在 .htaccess 中您不能配置对子域的支持

于 2013-01-22T07:51:46.450 回答