İyi günler
cpanel üzerinden elle veya kodlayarak subdomain oluşturarak maskeleme yapmak yerine,
ana domaini abc.com olan ve subdomaini demo.abc.com olan bir websitesindeki subdomain kısmını yukarıdaki gibi oluşturmadan nasıl maskeleyebilirim. Bunu route veya controller tarafında yapabiliyor muyuz? Yardımcı olabilir misiniz?
bulduğum bir örnek var konu ile ilgili.
/It looks like I can do this for domain+tld:
Route::group(array('domain' => '{domain}.{tld}'), function()
{
Route::get('/', 'SomeController@index');
Route::get('/', 'OtherController@index');
});
// and I can do this for subdomain+domain+tld
Route::group(array('domain' => '{subdomain}.{domain}.{tld}'), function()
{
Route::get('/', 'SomeController@index');
Route::get('/', 'OtherController@index');
});
// but I cant see how to combine those to get the optional subdomain
// without duplicating controller calls in 2 separate groups as above