Skip to content

Instantly share code, notes, and snippets.

@muhammad-alqabbani
Forked from ivandoric/.htaccess
Created December 2, 2020 23:48
Show Gist options
  • Save muhammad-alqabbani/e98d0be94154eb18bff9d8f258d81987 to your computer and use it in GitHub Desktop.
Save muhammad-alqabbani/e98d0be94154eb18bff9d8f258d81987 to your computer and use it in GitHub Desktop.
.htaccess file for video tutorial about deploying Node apps to shared hosting. Checkout the video: https://www.youtube.com/watch?v=ebWJbbUT4TA
RewriteEngine On
RewriteRule ^$ http://127.0.0.1:8080/ [P,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ http://127.0.0.1:1337/$1 [P,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment