I need a little help on htaccess file.
I want to remove port from my domain but this blocked requests that have id on the url.
For example:
My .htaccess file:
RewriteEngine On
RewriteRule ^$ http://127.0.0.1:32000/ [P,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ http://127.0.0.1:32000/$1 [P,L]
Please can somebody help me fix htaccess file?