Skip to content

Instantly share code, notes, and snippets.

@dvinciguerra
Created January 21, 2013 19:01
Show Gist options
  • Save dvinciguerra/4588381 to your computer and use it in GitHub Desktop.
Save dvinciguerra/4588381 to your computer and use it in GitHub Desktop.
htaccess for mojolicious under apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.pl/$1 [QSA,L]
</IfModule>
DirectoryIndex index.pl index.html index.htm ~/404.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment