Skip to content

Commit

Permalink
logo, https htaccess
Browse files Browse the repository at this point in the history
  • Loading branch information
filasik committed Oct 20, 2023
1 parent 9478db9 commit 2856c9b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#pretty url

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php?$1$2 [L,QSA]



# BEGIN HTTPS WEDOS
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=301,L]
Header set Content-Security-Policy "upgrade-insecure-requests;"
# END HTTPS WEDOS
7 changes: 7 additions & 0 deletions assets/images/qr-code-scan.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</head>
<body>
<div class="container w-50">
<h1 class="mt-5">qrko.skerik.me</h1>
<h1 class="mt-5"><img src="/assets/images/qr-code-scan.svg" style="width:2vw" class="me-2">qrko.skerik.me</h1>
<p>QR Code Generator - absolutely free.</p>
<form method="post">
<label for="url">Enter URL...</label>
Expand Down

0 comments on commit 2856c9b

Please sign in to comment.