iI need a help for the remove port number from the urlURL. iI host a site on VPS using xampp virtual host. all areEverything is working perfectly,but cant access domain without port number EX: www.abc.com:90 thisEX:
www.example.com:90
This URL is url working but iI need to remove this port number correct url. The correct URL should be like this Ex: www.abc.com:
www.example.com
thisHere is my xampp vhost file code
<VirtualHost *:90>
ServerName abc.com
ServerAlias www.abc.com
DocumentRoot "C:\xampp\htdocs\abc.com\public"
ErrorLog "logs/abc.com-error.log"
CustomLog "logs/abc.com-access.log" common
<Directory "C:\xampp\htdocs\abc.com">
    Require all granted
Order allow,deny
Allow from all
  </Directory>