I'm trying to setup a wordpress site on my server that also hosts another website. I can only get the wordpress site to work with the web address
.
I want to be able to simply access it from
.
The problem is when I type
in right now it displays the same page that is available from
.
I have attached both of the sites-available config files from
.
<strong>blog.murmillosoftware.com.conf</strong>
<strong>murmillosoftware.com.conf</strong>
<blockquote>
Forgot to restart my apache service. It is working now.
</blockquote>
Code:
blog.murmilosoftware.com/wp
I want to be able to simply access it from
Code:
blog.murmilosoftware.com
The problem is when I type
Code:
blog.murmilosoftware.com
Code:
murmilosoftware.com
I have attached both of the sites-available config files from
Code:
/etc/apache2/sites-available
<strong>blog.murmillosoftware.com.conf</strong>
Code:
Alias /wp/wp-content /var/lib/wordpress/wp-content
Alias /wp /usr/share/wordpress
<Directory /usr/share/wordpress>
Options FollowSymLinks
AllowOverride Limit Options FileInfo
DirectoryIndex index.php
Require all granted
</Directory>
<Directory /var/lib/wordpress/wp-content>
Options FollowSymLinks
Require all granted
</Directory>
<strong>murmillosoftware.com.conf</strong>
Code:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName murmillosoftware.com
ServerAlias www.murmillosoftware.com
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<blockquote>
Forgot to restart my apache service. It is working now.
</blockquote>