graceful restart apache service:
/etc/init.d/httpd graceful
stop apache:
/etc/init.d/httpd stop
start apache:
/etc/init.d/httpd start
reload apache:
/etc/init.d/apache reload
allow rewrite module (.htaccess and .htpasswd files with all possible rewrite commands!) put in httpd.conf:
LoadModule rewrite_module modules/mod_rewrite.so <Directory “/var/www/html”> RewriteEngine On Allowoverride All Order allow,deny Allow from all <Directory\>
to allow directory listing, put this in [...]
