Redirect url to url: htaccess port

1

I'm using node to run my application and I can not configure htaccess to point to port that I set

RewriteEngine on
RewriteCond %{HTTP_HOST} ^dashponto.softmarketing.com.br$ [OR]
RewriteCond %{HTTP_HOST} ^dashponto.softmarketing.com.br$
RewriteRule ^(.*)$ http://dashponto.softmarketing.com.br:1589/$1 [P]
    
asked by anonymous 29.12.2014 / 14:39

1 answer

0

Problem with socket.io, have to set with port

var socket = io('http://dashponto.softmarketing.com.br:1589');
    
30.12.2014 / 21:12