jsbin/.htaccess

15 lines
351 B
ApacheConf

<IfModule mod_rewrite.c>
# $Id: .htaccess,v 1.3 2006/11/09 09:08:14 remy Exp $
Options +FollowSymLinks +ExecCGI
RewriteEngine On
RewriteBase /
# strip www. from the domain
RewriteCond %{HTTP_HOST} ^www\.jsbin\.com$ [NC]
RewriteRule ^(.*)$ http://jsbin.com/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !public
RewriteRule (.*) /public/$1 [L]
</IfModule>