Skip to content

Instantly share code, notes, and snippets.

@jruels
Last active August 29, 2015 14:09
RewriteCond %{REQUEST_FILENAME} !-d # If not an existing directory
RewriteCond %{REQUEST_FILENAME} !-f # If not an existing file
RewriteCond %{REQUEST_URI} \.(jpg)$ [NC] # If filename ends with .pdf or .cdr
RewriteRule ^(.*)$ http://docs.site.com/$1 [L,R] # Redirect the user to the other site
RewriteRule ^.*$ index.php [NC,L] # Redirect all other requests to index.php
RewriteEngine On
RewriteRule ^.*\.swf$ /home [R=301,L]
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^(.+)\.jpg$ /$1.png [NC,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment