Wordpress Instalasi Smashing Multimedi Theme: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
New page: ==Pranala Menarik== * Instalasi Wordpress * Instalasi WP e-Commerce * Melihat Statistik Wordpress * Linux Howto * Aktifasi Wordpress Multisite * [[Wordpress Theme untu...
 
Onnowpurbo (talk | contribs)
No edit summary
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 03: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