Skip to content

Instantly share code, notes, and snippets.

@ashutoshpw
Last active August 3, 2020 07:00
Show Gist options
  • Save ashutoshpw/0ae33d02f35f085ccc0d9c03d310a813 to your computer and use it in GitHub Desktop.
Save ashutoshpw/0ae33d02f35f085ccc0d9c03d310a813 to your computer and use it in GitHub Desktop.
apache-htaccess-reverese-proxy
RewriteEngine On
RewriteRule ^$ http://127.0.0.1:8000/ [P,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ http://127.0.0.1:8000/$1 [P,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment