-- Leo's gemini proxy

-- Connecting to republic.circumlunar.space:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini

Redirecting all requests to https and www using .htaccess in Apache


I want all requests to artificialworlds.net/rabbit-escape/levels/ to get redirected to use the https protocol, and to include "www." at the beginning of the URL, and I found lots of Stack Overflow articles, but nothing there worked perfectly for me. Here is how I managed it.


I edited the .htaccess file in the directory where I want this to apply, and added this at the top:


artificialworlds.net/rabbit-escape/levels/


<IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteCond %{HTTP_HOST} ^artificialworlds\.net$ [NC]
 RewriteRule ^ https://www.artificialworlds.net%{REQUEST_URI} [R=301,L]

 RewriteCond %{HTTPS} off
 RewriteRule ^ https://www.artificialworlds.net%{REQUEST_URI} [R=301,L]
</IfModule>


Originally posted at 2018-09-04 06:23:57+00:00. Automatically generated from the original post : apologies for the errors introduced.


original post

-- Response ended

-- Page fetched on Mon May 27 20:27:05 2024