it's all about cookies ,it suppose redirect to ?referer_id=186 every time which is refresh the cookies of new logo but i notices when user delete or clear the history of Brower and try to visit the website by https the cookies not refresh again
you can try by visit
https://gps.tolivery.com
and then delete the cookies and again visit the same link , you will notices the cookies changed and ?referer_id=186 ignored , to fix this i have to visit without ssl
http://gps.tolivery.com
or using ssl with ?referer_id=186
https://gps.tolivery.com/?referer_id=186
i just want always the https by this link https://gps.tolivery.com
redirect to ?referer_id=186 automatic to refresh the cookies like the same
behavior of http (gps.tolivery.com) whether user delete cookies or not
configuration:
<VirtualHost *:80>
ServerName example.com
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule ^(.*)$ https://example.com/$1?referer_id=186 [QSA]
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>