用户名作为laravel上的子域

时间:2013-01-18 14:52:57

标签: php .htaccess mod-rewrite laravel laravel-3

我已经设置了一个通配符子域* .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 个答案:

答案 0 :(得分:23)

这很容易。首先 - 不要更改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

答案 1 :(得分:13)

Laravel 4具有开箱即用的功能:

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

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

});

Source

答案 2 :(得分: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,您可以在路径文件中的某个位置有条件地定义路线,但我确信其他人可以为这部分提供更加雄辩的方式。 ..

答案 3 :(得分:0)

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