diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-27 18:26:41 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-27 18:26:41 -0300 |
commit | 8c4bb58afb78bc5ea250aa635640dc55a850044d (patch) | |
tree | dfb36ce8a53e1d42751fbabd21dea5c14252ca99 /.htaccess | |
parent | da983af4611ad16ebd21bdcf13fbdd79d58ecd8c (diff) | |
download | blog-8c4bb58afb78bc5ea250aa635640dc55a850044d.tar.gz blog-8c4bb58afb78bc5ea250aa635640dc55a850044d.tar.bz2 |
Fix events redirection
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,8 +2,8 @@ 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] + RewriteRule "^/cypherpunks$" "events/2013/cypherpunks" [R] + RewriteRule "^/campusparty$" "events/2014/campusparty" [R] + RewriteRule "^/cryptorave$" "events/2014/cryptorave" [R] + RewriteRule "^/fisl$" "events/2015/fisl" [R] </IfModule> |