Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Get /?url=/ in URL when redirect to HTTPS using .htaccess?


Go to End


662 Views

Avatar
VPull

Community Member, 58 Posts

7 November 2016 at 6:52pm

I want to redirect all URLs to HTTPS.
I have added below lines to .htaccess file.

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

I can access my website properly on HTTPS but when I enter website url in browser directly,
I get http://mydomain.com/?url=/

please help me to resolve this issue