Difference between revisions of "Wordpress Instalasi Smashing Multimedi Theme"

From OnnoWiki
Jump to navigation Jump to search
(New page: ==Pranala Menarik== * Instalasi Wordpress * Instalasi WP e-Commerce * Melihat Statistik Wordpress * Linux Howto * Aktifasi Wordpress Multisite * [[Wordpress Theme untu...)
 
Line 1: Line 1:
 +
==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
 +
 +
 +
 
==Pranala Menarik==
 
==Pranala Menarik==
  

Revision as of 10:18, 18 April 2012

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


Pranala Menarik