Skip to main content

I need to install mod_rewrite

Comments

2 comments

  • KurtN.
    The mod_rewrite module is installed by default when using EasyApache and is compiled directly into the 'httpd' binary. As evident by your output, it's available (mod_rewrite.c). You do not need a dynamic module to load mod_rewrite, since it's already loaded. To verify that you have mod_rewrite functionality, run the command and it will show that you have access to the httpd.conf directives it provides: /usr/local/apache/bin/httpd -G | grep mod_rewrite You should see output that is similar to this: RewriteEngine (mod_rewrite.c) RewriteOptions (mod_rewrite.c) RewriteBase (mod_rewrite.c) RewriteCond (mod_rewrite.c) RewriteRule (mod_rewrite.c) RewriteMap (mod_rewrite.c) RewriteLock (mod_rewrite.c) RewriteLog (mod_rewrite.c) RewriteLogLevel (mod_rewrite.c) If you see output like that, then mod_rewrite is working, installed, and available for your use.
    0
  • shufil
    Hello , Thanks for reaply, its very help full , i got same out put . /usr/local/apache/bin/httpd -G | grep mod_rewrite RewriteEngine (mod_rewrite.c) RewriteOptions (mod_rewrite.c) RewriteBase (mod_rewrite.c) RewriteCond (mod_rewrite.c) RewriteRule (mod_rewrite.c) RewriteMap (mod_rewrite.c) RewriteLock (mod_rewrite.c) RewriteLog (mod_rewrite.c) RewriteLogLevel (mod_rewrite.c) Thanks and regards, Shufil
    0

Please sign in to leave a comment.