El problema es que cuando accedo a la pagina web desde cualquier ordenador me muestra una ruta tal que asi:
http://217.127.63.200/S_W
lo que quiero es que no me muestra la ip en la url
El fichero httpd.conf: contiene:
ProxyPass /SISCON_WEB http://192.168.10.1:8086/S_W
ProxyPassReverse /SISCON_WEB http://192.168.10.1:8086/S_W
ServerType standalone
ServerRoot "C:/Archivos de programa/Apache Group/Apache"
PidFile logs/httpd.pid
ScoreBoardFile logs/apache_runtime_status
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MaxRequestsPerChild 0
ThreadsPerChild 50
Port 80
ServerAdmin [email protected]
ServerName http://www.ch.com
#http://217.127.63.200
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_userdir.c>
UserDir "C:/Archivos de programa/Apache Group/Apache/users/"
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.html
</IfModule>
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
UseCanonicalName On
<IfModule mod_mime.c>
TypesConfig conf/mime.types
</IfModule>
DefaultType text/plain
<IfModule mod_mime_magic.c>
MIMEMagicFile conf/magic
</IfModule>
HostnameLookups Off
ServerSignature On
gracias