当我使用secure_url()
或asset()
时,它会链接到我的网站 没有 “www”,即“example.com”。
如何更改链接到“www.example.com”?
答案 0 :(得分:31)
首先在文件 config / app.php (或 .env 文件的APP_URL值)中更改您的应用程序网址:
'url' => 'http://www.example.com',
然后,让URL生成器使用它。在启动方法中将代码行添加到 app / Providers / AppServiceProvider.php 文件中:
\URL::forceRootUrl(\Config::get('app.url'));
// And this if you wanna handle https URL scheme
// It's not usefull for http://www.example.com, it's just to make it more independant from the constant value
if (\Str::contains(\Config::get('app.url'), 'https://')) {
\URL::forceScheme('https');
//use \URL:forceSchema('https') if you use laravel < 5.4
}
那是所有人。