Hosting Multiple Websites Under One NearlyFreeSpeech Site

4 Likes

I finally got around to trying this. The only issue was that Bradley Taunt’s suggested .htaccess for redirecting www to non-www doesn’t really work. The following is universal, however:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]