We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can the copy button on the +keyword page copy https links instead of http links?
The text was updated successfully, but these errors were encountered:
My domain already supports https, and I opened it with an https link.
Sorry, something went wrong.
I cannot reproduce it on my side, because my environment does not support https.
Maybe this can help
urlhub/resources/views/frontend/short.blade.php
Lines 40 to 45 in 2204bf5
- data-clipboard-text="{{$url->short_url}}" + data-clipboard-text="{{url($url->short_url)}}"
Reference
Thank you for your reply, I tried your plan, it is invalid. I used another method, which is a little inelegant, but it works.
urlhub/app/Providers/AppServiceProvider.php
+ use Illuminate\Support\Facades\URL; +
+ URL::forceScheme('https');
realodix
No branches or pull requests
How can the copy button on the +keyword page copy https links instead of http links?
The text was updated successfully, but these errors were encountered: