• Hello Everyone,

    I have WAMP server and wordpress installed on my home computer. WordPress is located in the following directory “H:\wamp\www\BlogWebsite\wordpress”.In order for people on my network or out my network to view my wordpress page I did the following:
    In the Apache configuration file (httpd.conf), I changed
    # Virtual hosts
    # Include conf/extra/httpd-vhosts.conf to
    # Virtual hosts
    Include conf/extra/httpd-vhosts.conf
    In the Apache virtual host configuration (httpd-vhosts.conf), I added the following
    <VirtualHost *:80>
    ServerName localhost
    DocumentRoot H:/wamp/www
    </VirtualHost>
    <VirtualHost *:80>
    ServerName Blog
    DocumentRoot H:/wamp/www/BlogWebsite/wordpress
    </VirtualHost>
    In the hosts.conf (C:/Windows/System32/drivers/etc), I added the following
    192.168.1.101 localhost
    192.168.1.101 Blog
    I went in the general settings in wordpress and changed the wordpress and site addresses to https://Blog/BlogWebsite/wordpress
    Click save and restarted wamp services but now my themes are not visible on my local computer and on computers in my network. Everything is just plain text and when I click on link on my plain text blog, I get an error saying that the page can not be found. I checked in the error log in Apache and I got the following error directory H:/wamp/www/BlogWebsite/wordpress/Blogwebsite does not exists. I do not understand why the pages are being referred to H:/wamp/www/BlogWebsite/wordpress/Blogwebsite. Also I tried changing my wordpress and site addresses to https://myrealip/BlogWebsite/wordpress but that does not work either.

    Can someone tell me what I am doing wrong?

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Themes (css) is not visble from other computers’ is closed to new replies.