Question
How do I enable or verify that a module for Apache is enabled on my server?
Answer
cPanel provides a default set of modules for Apache when the Standard Server node profile is enabled. You can verify if a module is installed via the command-line interface using "httpd -M". For example, if you want to check if mod_rewrite is enabled, you can grep for it while loading the list of modules.
# httpd -M |grep rewrite
rewrite_module (shared)
If you need to add additional modules, this can be done via WHM (Home / Software / EasyApache) or the server's package manager.
Comments
0 comments
Article is closed for comments.