vhost – two urls on one blog
-
I have a blog, with WordPress 2.6, running on my own server with Apache 1.3.29 and I want to have a vhost for my blog.
Currently the blog has the URL https://sysctl.dk/blog/ and that should keep working. Then I want the domain interstellar.dk to act as a vhost for the blog directory.I have this in httpd.conf:
NameVirtualHost *
<VirtualHost *>
DocumentRoot /var/www/htdocs/blog
ServerName interstellar.dk
ServerAlias interstellar.dk https://www.interstellar.dk
</VirtualHost>But it seems it is not working, since WordPress want an exact URL for the blog and it cant handle more than one working URL at the same time.
Some googling only got an old unmaintained plugin and some stuff with WordPress MU, which does not relate to my problem.Is this possible at all with WordPress? Thanx in advance for any suggestions.
- The topic ‘vhost – two urls on one blog’ is closed to new replies.