Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save projoomexperts/d5be0d06e7c4e3e80b678f9928d0beb7 to your computer and use it in GitHub Desktop.
Save projoomexperts/d5be0d06e7c4e3e80b678f9928d0beb7 to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteCond %{REQUEST_URI} !^/newsite18/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /newsite18/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ newsite18/index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment