I am trying to make iframe in my Laravel project.
URL for iframe is http://buckymaler.com/apollo/ that is stored in database
In iframe I am getting url for source like this:
<iframe src="{{$portfolio->link}}" style="width: 100%; height: 100%" frameborder="0"></iframe>
But when I open this page on browser url is being changed to https://buckymaler.com/apollo/
In AppServiceProvider.php has no anything:
<?php
namespace AppProviders;
use IlluminateSupportServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
}
I am working in VPS server.
If you have solution, Please, help me!
question from:
https://stackoverflow.com/questions/66057132/http-being-changed-to-https-in-src-of-iframe-in-laravel 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…