15 words
1 minutes
Forward request from a path to specific port by .htaccess
2023-05-05
No Tags
Options +FollowSymLinks -Indexes
    IndexIgnore *
    DirectoryIndex
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^(.*)$ http://localhost:<internal-port>/$1 [P]
    </IfModule>