diff options
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..7062b49 --- /dev/null +++ b/.htaccess @@ -0,0 +1,9 @@ +<IfModule mod_rewrite.c> + RewriteEngine on + + # See https://httpd.apache.org/docs/2.4/rewrite/remapping.html + RewriteRule "^/cypherpunks$" "eventos/2013/cypherpunks" [R] + RewriteRule "^/campusparty$" "eventos/2014/campusparty" [R] + RewriteRule "^/cryptorave$" "eventos/2014/cryptorave" [R] + RewriteRule "^/fisl$" "eventos/2015/fisl" [R] +</IfModule> |