Skip to content

Instantly share code, notes, and snippets.

View viktorbijlenga's full-sized avatar

Viktor Bijlenga viktorbijlenga

View GitHub Profile
@viktorbijlenga
viktorbijlenga / htaccess-redirect-load-images-from-production
Last active April 13, 2023 11:55 — forked from rxnlabs/htaccess-redirect-load-images-from-production
htaccess - Redirect image and file request from the localhost to the production host - Wordpress
# Place on top of Wordpress own redirect rules
# If a file (-f) or directory (-d) doesn't exist on the local host,
# A 302 redirect request is made to the production host.
<IfModule mod_rewrite.c>
RewriteEngine On
#Redirect WordPress uploads
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f