Add basic redirect via .htaccess RewriteRules

This commit is contained in:
Adam Goldsmith 2020-07-11 01:24:19 -04:00
commit ff2bb11a72

4
.htaccess Normal file
View File

@ -0,0 +1,4 @@
RewriteEngine on
RewriteCond %{HTTP_HOST} ^inv\.claremontmakerspace\.org$
RewriteRule ^(.+)$ https://inventory.claremontmakerspace.org/hardware/bytag?assetTag=$1 [R,L]
RewriteRule . https://inventory.claremontmakerspace.org/ [R,L]