Skip to content

Instantly share code, notes, and snippets.

@georgebrata
Created July 25, 2023 12:52
Show Gist options
  • Save georgebrata/6824f100c2f8369abd2b31f3e9259326 to your computer and use it in GitHub Desktop.
Save georgebrata/6824f100c2f8369abd2b31f3e9259326 to your computer and use it in GitHub Desktop.
.htaccess for personal website
RewriteOptions inherit
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTP_HOST} ^georgebrata\.ro$ [OR]
RewriteCond %{HTTP_HOST} ^www\.georgebrata\.ro$
RewriteRule ^portfoliu$ "https\:\/\/georgebrata\.ro\/portfolio" [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment