Do I need to restart httpd after changes in the httpd.conf file for changes to take effect?
相关问题
- Stop .htaccess redirect with query string
- .htaccess rule, redirecting old unexistent address
- How to deploy a web application Aurelia in an Apac
- Apache Directory Studio not opening
- PHP Empty $_POST
相关文章
- Apache+Tomcat+JK实现的集群,如果Apache挂了,是不是整个服务就挂了?
- How reliable is HTTP_HOST?
- Making a two way SSL authentication between apache
- UnicodeEncodeError when saving ImageField containi
- mod_rewrite only on GET
- jquery how to get the status message returned by a
- How do I debug errors that have no error message?
- Cloudfront cache-control headers missing
Yes. HTTPD.conf is read on apache start-up, so for any changes to take affect you need to restart it.
Yes you need to restart the server by
You can check errors in your config files by
Changes may take some time to reflect.
You can have apache re-read its config files without restarting by
sudo apachectl graceful
(orapache2ctl
on debian).From the Apache docs: