'Drupal'에 해당되는 글 1건

  1. 2013.06.25 [Drupal7] Clean urls not working on ubuntu 1
Drupal2013. 6. 25. 02:39

1. execute these instructions
# sudo a2enmod rewrite
# sudo apache2ctl -l

2. replace the occurrence of AllowOverride None to AllowOverride all
# vi /etc/apache2/sites-enabled/000-default

<VirtualHost *:80> ServerAdmin admin@localhost DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride all <- change this line like that </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride all
<- change this line like that Order allow,deny allow from all </Directory>


3. restart apache

# sudo service apache2 restart



reference site : here


Posted by 준피