Hola gente! Estoy creando un servidor en mi PC sencillito con Apache, MySQL y PHP5 para luego montar un blog con Wordpress, no he instalado XAMPP porque prefiero hacerlo paso a paso, configurarlo yo todo y aprender, que para eso lo hago
Os explico: Al intentar acceder al blog en modo local (con http://localhost en el navegador) me va de perlas, todo se ve perfecto, es un típico blog de WordPress con el tema por defecto, pero al acceder por mi IP externa o mi dirección DynDNS desde un ordenador no perteneciente a mi red local, la web se ve mal, no se carga el CSS y la barra lateral se pone encima de los posts y no se cargan las imágenes, por lo que se ve como si fuera una web en HTML puro, no es dificil de imaginar su aspecto...
Quiero solucionarlo, pero creo que voy a ecesitar ayuda, os posteo mi httpd.conf (nota: un amigo mio me pasó su httpd.conf y lo usé de referencia, porque el mío estaba totalmente vacio)
Código:
ServerRoot "/etc/apache2"
Listen *:84
Listen 80
LoadModule php5_module modules/libphp5.so
#LoadModule php4_module modules/libphp4.so
AddType application/x-httpd-php .php .php3 .php4 .php5
AddType application/x-httpd-php-source .phps
AddHandler cgi-script .cgi .pl
<IfModule !mpm_netware_module>
User ahi
Group ahi
</IfModule>
ServerName http://localhost:85
DocumentRoot "/var/www"
<Directory />
Options FollowSymLinks
Allow from all
</Directory>
<Directory /wp-admin/>
Options FollowSymLinks
Allow from all
</Directory>
<Directory /wp-content/>
Options FollowSymLinks
Allow from all
</Directory>
<Directory /wp-includes/>
Options FollowSymLinks
Allow from all
</Directory>
<Directory /wp-content/themes/default/>
Options FollowSymLinks
Allow from all
</Directory>
<Directory /wp-content/themes/default/images/>
Options FollowSymLinks
Allow from all
</Directory>
<IfModule dir_module>
DirectoryIndex index.html index.php index.htmls index.htm
</IfModule>
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
ErrorLog logs/error_log
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog logs/access_log common
</IfModule>
<IfModule cgid_module>
</IfModule>
DefaultType text/plain
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Espero que alguien me pueda ayudar...