Apache keeps adding 8080 port by itself while I'm telling it to use 80 only
Posted
by
laggingreflex
on Server Fault
See other posts from Server Fault
or by laggingreflex
Published on 2012-11-01T09:48:39Z
Indexed on
2012/11/01
11:03 UTC
Read the original article
Hit count: 251
Here's my httpd.conf
. Inside it, I have the following in place
#Listen 12.34.56.78:80
#Listen 127.0.0.1:8887
Listen 127.0.0.1:80
#Listen 127.0.0.1:8080
Listen 192.168.1.4:80
and I have a .htaccess
RewriteEngine On
RewriteRule ^wordpress(.*)$ wp-oct/live$1
in my local www folder with wordpress installed in /wp-oct/live/
to which /wordpress/
is supposed to redirect to, but it doesn't. It instead redirects to http://localhost:8080/wp-oct/live/
. Why is 8080 showing up?
© Server Fault or respective owner