2) I have a single wordpress installation for multiple sites, but cant figure, if it is possible to have installation to work from domain root. Currently I have direcotry structure like:
domain/.htaccess
domain/index.php -> redirects to domain/blog/
domain/blog/ -> symbolic link to /usr/share/wordpress/
.htaccess file contains:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
Id like to have blog on root so that hxxp://www.domain.ext/ shows the blog. At the moment hxxp://www.domain.ext/blog/ shows the blog.
My own experiments with rewrite rules just leads to infinite loops and I cant figure out how to do this...
Bookmarks