Skip to content

Instantly share code, notes, and snippets.

View memuller's full-sized avatar

Matheus E. Muller memuller

View GitHub Profile
@falexandrou
falexandrou / .htaccess
Created November 14, 2012 21:00
Rewrite to a separate Wordpress installation dir
# When installing wordpress on a separate dir inside your $_SERVER['DOCUMENT_ROOT']
# you may need to create a rewrite rule, otherwise wordpress will start complaining...
#
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /wordpress-installation-dir/wordpress/$1 [L]