Showing posts with label Apache. Show all posts
Showing posts with label Apache. Show all posts

Enable mod_rewrite di Apache IGN 8

Enable mod_rewrite di Apache IGN 8

Edit file httpd.conf
nano /etc/httpd/conf/httpd.conf 
Cari baris berikut :
<Directory "/var/www/html">
ubah
AllowOverride None 
menjadi
AllowOverride All
Restart Apache
service httpd restart
Percobaan :

buat file tesmodrewrite.php

dan file .htaccess
Enable mod_rewrite di Apache IGN 8

Hasil :
Enable mod_rewrite di Apache IGN 8

Enable mod_rewrite di Apache IGN 8

Disable SSL di Apache Red Hat Enterprise Linux Server


Disable SSL di Apache Red Hat Enterprise Linux Server

Edit File ssl.conf
# nano /etc/httpd/conf.d/ssl.conf 
Cari 
SSLEngine on
Ubah menjadi 
SSLEngine off
Restart apache 
# service httpd restart

...