Skip to content
Snippets Groups Projects
.htaccess 487 B
Newer Older
  • Learn to ignore specific revisions
  • rhatto's avatar
    rhatto committed
    <IfModule mod_rewrite.c>
      RewriteEngine on
    
      # See https://httpd.apache.org/docs/2.4/rewrite/remapping.html
    
    rhatto's avatar
    rhatto committed
      RewriteRule ^cypherpunks$ /events/2013/cypherpunks/                [R]
      RewriteRule ^campusparty$ /events/2014/campusparty/                [R]
      RewriteRule ^cryptorave$  /events/2014/cryptorave/                 [R]
      RewriteRule ^fisl$        /events/2015/fisl/                       [R]
      RewriteRule ^organizacao$ https://templates.fluxo.info/organizacao [R]
    
    rhatto's avatar
    rhatto committed
    </IfModule>