我想知道如何使用laravel 5.6和wampserver创建动态子域 我在网络路由中进行测试的代码
Route::group(array('domain' => '{subdomain}.test.local'), function () {
Route::get('/', function ($subdomain) {
$name = DB::table('users')->where('username', $subdomain)->get();
dd($name);
});
});
我在vhost和httpd-vhosts上执行一个参数。之后我添加了别名。结果在这里
<VirtualHost *:80>
ServerName test.local
ServerAlias *.test.local
DocumentRoot "c:/wamp64/www/test"
<Directory "c:/wamp64/www/test/">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from all
</Directory>
</VirtualHost>
在我的浏览器中,如果子域正确但不起作用,我尝试使用test.test.local进行尝试。 注意:我想拥有可变子域 谢谢您的回答