i rewrite all non-www requests to www with:
RewriteCond %{HTTP_HOST} !^www\.mydomain\.de$
RewriteRule ^(.*)$ http://www.mydomain.de/$1 [L,R=301]
But...
this doesn´t work with https, so I also want all https requests without www to https with www.
Example:
https : // mydomain . de --> https : // www . mydomain . de
https://mydomain.de/example
it1352
2
2019-05-06
I just switched our Magento website from http://www.domain.com to https://www.domain.com in the exitement than now everything would be fine...
But now all old http://www.domain.com -url´s is now showing: NET::ERR_CERT_COMMON_NAME_INVALID, insecure domain...
https://domain.com and https://domain.com/etc/etc works fine...
I guess I have to forc
it1352
4
2019-05-06
I need help with rewrite rules.
So I want that these addresses:
http://domain.com
http://www.domain.com
https://www.domain.com
Redirect to:
https://domain.com
Can someone help me?
Right now I have rule:
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://domain.com/$1 [R,L]
But it doesnt redirect https://www to https://
Solution Pl
it1352
4
2019-05-06
Does anyone know of a working (python) https proxy which allows viewing of
unencrypted data being sent from my browser to an https site?
I''ve worked my way through most on the list at http://xhaus.com/alan/python/proxies.html, but while many claim to support
https, if you actually point your browser at the proxies, they work fine for
http, but no
it1352
5
2019-06-25
When I go to https://myapp.nodejitsu.com I magically have ssl enabled. But my app's websocket transport seems to be broken now. What do I need to do to enable websockets over this https, what else could be broken? What are they doing to enable SSL?
Solution Nodejitsu uses node-http-proxy to proxy https to http, to your app. The proxy supports webs
it1352
0
2019-05-21
Been googling all morning but can't find an answer.
The official documentation does not even have the words "https" or "ssl" on it.
Currently I have something like:
var A = backbone.Collection.extend({
url : "a"
});
is there a way to make the url https, without using absolute path?
Solution I don't think you can change the URL to HTTPS sinc
it1352
4
2019-05-08
DNS A-records require that an IP address be hard-coded into your application’s DNS configuration
...which Heroku recommends avoiding. Heroku suggests two workarounds:
...using a DNS provider that supports CNAME-like functionality at the apex, and using subdomain redirection`.
My question revolves around the latter option (because the for
it1352
6
2019-05-21
I have some pages that are sent via HTTPS. Internet Explorer sometimes complains about "This webpage contains content that will not be delivered using a secure HTTPS".
I looked in the html source to confirm all content calls (href, src, etc...) are sent via https. My CSS files use relative paths. But I'm still getting these warnings.
Is there
it1352
0
2019-05-21
I understand from various sources that the HTTPS handshake is the heaviest part of using HTTPS. I'm using POSTs internally between my servers to communicate information and would like to use HTTPS for it. I wondered how long the actual HTTPS handshake lasts/"stays open"? Is it re-done for each POST I'm sending to a server, or what is the lifetime?
it1352
2
2019-05-21
I am a beginner in HTTPS technology :(. I have some doubt regarding the HTTPS implementation.
suppose I have a registration form
http://www.sitename.com/register.php
if I want to use this in HTTPS this will become
https://www.sitename.com/register.php
What does this means? How to implement a HTTPS from scratch?
how do i get certificate??
T
it1352
3
2019-05-21