Hi,
We are trying to code a feature that lets the user configure inputs to
RequestReadTimeout in httpd.conf. This is done to mitigate slowrosis attacks.
We are trying to decide the upper limits of body (bodyMin, bodyMax and
BodyRate) and header(headerMin, headerMax and headerRate). Could not fi
On 03/04/2018 08:07 AM, LuKreme wrote:
> I don't do this in .htaccess, I do it in
>
>
>ServerName www.example.com
>ServerAlias example.com
>Redirect / https://www.example.com/
>
>
> But something like this should work in .htaccess as well:
>
> RewriteEngine On
> RewriteCond %{S
I don't do this in .htaccess, I do it in
ServerName www.example.com
ServerAlias example.com
Redirect / https://www.example.com/
But something like this should work in .htaccess as well:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1