gpt4 book ai didi

php - Laravel 路由到多域

转载 作者:可可西里 更新时间:2023-10-31 23:05:32 24 4
gpt4 key购买 nike

我正在创建一个平台来支持平台下的多个网站,有些网站需要有不同的域。

最常见的是使用相同的域:

myrootdomain.com/first_product/profile

myrootdomain.com/second_product/profile

在这些情况下,{first_product} 和 {second_product} 将作为参数传递给几乎所有函数。/first_product 和/second_product 是在同一平台下运行的完全不同的网站。

但我需要创建另一个产品,我可以在其中更改 TLD,并且仍然能够将 {anotherrootdomain} 标识为我的函数的第一个参数。像这样:

anotherrootdomain.com/profile

我已经使用 Route::bind 处理了第一个参数。

<?php

Route::bind('short_url', function($value, $route)
{
$product = Product::where('short_url', $value)->first();

if(is_null($product))
return false;
return $product->id;
});

Route::get('/{short_url}/login', 'HomeController@login');
Route::get('/{short_url}/profile', 'UserController@profile');

现在我不知道如何:

1) 寻找域名

2) 使用域作为第一个参数

我知道我的英语很糟糕,但我希望你能帮助我!


编辑:

我可以在 routes.php 上做这样的事情:

if($_SERVER['HTTP_HOST'] == "anotherrootdomain.com")
$tld = "anotherrootdomain";

然后我需要从中获得机会:

Route::get('/{short_url}/login', 'HomeController@login');
Route::get('/{short_url}/profile', 'UserController@profile');

对此:

Route::get('/login', 'HomeController@login');
Route::get('/profile', 'UserController@profile');

我可以使用一个简单的 if 来做到这一点,但现在我无法在我的路线上传递参数! HomeController@login 需要一个参数,我需要传递 $tld 变量,但我不知道如何传递!

最佳答案

我想到了一个方法!

假设示例中的/second_product 需要使用另一个 TLD 访问,例如“awesomeproduct.com”。一些 URL 需要机会:

myrootdomain.com/second_product/login => awesomeproduct.com/login

myrootdomain.com/second_product/profile => awesomeproduct.com/profile

虽然 first_product 仍然以第一种方式工作:

myrootdomain.com/first_product/login

myrootdomain.com/first_product/profile

为了让它成为可能,我创建了一个带有子域的路由组(我不知道我也可以在 TLD 上使用通配符):

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

然后我稍微更改了 Route::bind 以更改 {short_url} 参数:

Route::bind('short_url', function($value, $route)
{
if($value == "awesomeproduct")
$value = "second_product";

$product = Product::where('short_url', $value)->first();

if(is_null($product))
return false;
return $product->id;
});

最后,我需要更改路由以使用或不使用 {short_url}:

$tld = "";
if($_SERVER['HTTP_HOST'] != "testefacop.com")
$tld = "{short_url}/";

Route::get('/'.$tld.'login', 'HomeController@login');
Route::get('/'.$tld.'profile', 'UserController@profile');

这是我完整的 routes.php:

<?php

Route::bind('short_url', function($value, $route)
{
if($value == "awesomeproduct")
$value = "second_product";

$product = Product::where('short_url', $value)->first();

if(is_null($product))
return false;
return $product->id;
});

Route::group(array('domain' => '{short_url}.com'), function($short_url)
{
$tld = "";
if($_SERVER['HTTP_HOST'] != "awesomeproduct.com")
$tld = "{short_url}/";

Route::get('/'.$tld.'login', 'HomeController@login');
Route::get('/'.$tld.'profile', 'UserController@profile');

}

这不是一个伟大而完美的解决方案,但它按预期工作!

关于php - Laravel 路由到多域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22827226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com