Tag Archives: .htaccess Is Not working in Linux(Ubuntu) Apache2

วิธีแก้ ไข .htaccess ไม่ทำงาน .htaccess Is Not working in Linux(Ubuntu) Apache2

login Server  root

nano /etc/apache2/apache2.conf

 

From:

<Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

TO:

<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>
and
<Directory />
 Options Indexes FollowSymLinks MultiViews
 AllowOverride All
 Order allow,deny
 allow from all
</Directory>


ok  save file   

sudo   /etc/init.d/apache2 restart


ok  wokrk

Its working. It’s enabled use of .htaccess files.