There is a Bug in apache while using a2enmod, it doesn't make any
changes, so I am following these steps from last 1 year everytime I
reinstall ubuntu. May be they fixed it in new version. But these steps works 100%
Open terminal & follow this :
#sudo gedit /etc/apache2/sites-enabled/000-default
Check for these lines & change as I have done here :
DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride all </Directory> <Directory /var/www/> Options FollowSymLinks AllowOverride all Order allow,deny allow from all </Directory> Save the file & restart apache :
#sudo /etc/init.d/apache2 restart

Ubuntu 11.04 code named natty narwhal is released download ubuntu 11.04
Read ubuntu 11.10 reviews and share yours now!!
hi. I you can simple change your whole website theme through just this rewrite rule
- Visitor 42 weeks 3 days agoby this
RewriteCond %{http_host} ^([^.]+)\.test.com [NC]
RewriteRule ^(images|css)/(.+)$ themes/2/$1/$2 [L]
for more info you can visit this
http://developer99.blogspot.com/2011/07/changing-your-website-theme-thor...
Yep, in addition to the above answer, one must add AllowOverride All to <Directory> tag in the /etc/apache2/sites-enabled/000-default file
- Visitor 2 years 25 weeks ago