mirror of
https://github.com/jsbin/jsbin.git
synced 2026-02-01 16:46:05 +00:00
15 lines
351 B
ApacheConf
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> |