Viewing articles tagged 'to'

 Redirect http to https with htaccess

http > httpsRewriteEngine On#First rewrite any request to the wrong domain to use the correct...

 Redirect non www domain to www domain - without https and htaccess

RewriteEngine OnRewriteCond %{HTTP_HOST} !^www\.RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1...

 Script to export tables from an sqlite database to files

script to export the tables:#!/usr/bin/env bash# obtains all data tables from databaseTS=`sqlite3...