Skip to content

Instantly share code, notes, and snippets.

View raymatos's full-sized avatar

Ray Matos raymatos

  • Philadelphia, PA
View GitHub Profile
@raymatos
raymatos / Apache_rewrite_to_Amazon_S3.txt
Last active December 8, 2015 19:58 — forked from NapoleonWils0n/Apache_rewrite_to_Amazon_S3.txt
apache: apache rewrite to amazon s3 bucket
<Directory "/www/sitename/folder/">
<IfModule mod_rewrite.c>
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} \.php$
RewriteRule ^(.*) http://bucktname.s3.amazonaws.com/folder/$1
</IfModule>
</Directory>