- Enable mod_rewrite in your apache2 installation

a2enmod rewrite; /etc/init.d/apache2 restart

- Change "AllowOverride None" to "AllowOverride All" in your virtual host config.

- Create an .htaccess file in your WP's root dir.

BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /content/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /content/index.php L </IfModule> END WordPress