# =========================================== # .htaccess - Place in root directory # =========================================== ErrorDocument 404 /404.php RewriteEngine On RewriteBase / # Redirect www to non-www RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] # Force HTTPS RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # ============================================ # 404.php - Smart 404 with Intelligent Redirect # ============================================
The page you're looking for doesn't exist.
Did you mean this?
π 404