Wordpress Instalasi Smashing Multimedi Theme
Revision as of 10:18, 18 April 2012 by Onnowpurbo (talk | contribs)
Aktifkan Mod Rewrite di Apache
- Enable mod_rewrite di apache
 
sudo a2enmod rewrite
- Alternatif lain untuk enable mod_rewrite
 
vi /etc/apache2/sites-enabled/000-default
DocumentRoot /var/www
<Directory />
     Options FollowSymLinks
     AllowOverride all
</Directory>
<Directory /var/www/>
     Options Indexes FollowSymLinks MultiViews
     AllowOverride all
     Order allow,deny
     allow from all
</Directory>
- Restart Apache
 
/etc/init.d/apache2 restart