This is a discussion on How to determine if mod_rewrite is installed with Apache? within the Linux Web Servers forums, part of the Web Server and Related Forums category; Hello, What's the correct way to know for sure whether mod_rewrite module is installed or not? This is Server ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
What's the correct way to know for sure whether mod_rewrite module is installed or not? This is Server version: Apache/1.3.29 (Unix). I did 'httpd -l'. But did not see mod_rewrite. Does that mean my Apache server has no mod_rewrite support? Thanks in advance for any help, Bing |
|
|||
|
On 2 Jun 2004 13:55:40 -0700, bdu@iastate.edu (Bing) wrote:
>Hello, > >What's the correct way to know for sure whether mod_rewrite module is >installed or not? This is Server version: Apache/1.3.29 (Unix). I >did 'httpd -l'. But did not see mod_rewrite. Does that mean my >Apache server has no mod_rewrite support? > mod_rewrite is usually installed as a dynamically-linked module, not compiled into the main Apache executable. Check your httpd.conf for a LoadModule directive referencing mod_rewrite.so. To be sure, you can just add a RewriteRule directive to httpd.conf and see if Apache flags an error indicating the lack of mod_rewrite. Regards, -Claire |
|
|||
|
Where can I get the mod_rewrite module? I can not locate
mod_rewrite.c or mod_rewrite.so on my Apache server. Thanks, Bing Claire Tucker <fake@invalid.com> wrote in message news:<q3ksb010s44d6phe1kj6062mpoinb4l5t9@4ax.com>. .. > On 2 Jun 2004 13:55:40 -0700, bdu@iastate.edu (Bing) wrote: > > >Hello, > > > >What's the correct way to know for sure whether mod_rewrite module is > >installed or not? This is Server version: Apache/1.3.29 (Unix). I > >did 'httpd -l'. But did not see mod_rewrite. Does that mean my > >Apache server has no mod_rewrite support? > > > > mod_rewrite is usually installed as a dynamically-linked module, not > compiled into the main Apache executable. > > Check your httpd.conf for a LoadModule directive referencing > mod_rewrite.so. To be sure, you can just add a RewriteRule directive > to httpd.conf and see if Apache flags an error indicating the lack of > mod_rewrite. > > Regards, > -Claire |
|
|||
|
Never mind. I've figured out how to get mod_rewrite enabled.
Bing Claire Tucker <fake@invalid.com> wrote in message news:<q3ksb010s44d6phe1kj6062mpoinb4l5t9@4ax.com>. .. > On 2 Jun 2004 13:55:40 -0700, bdu@iastate.edu (Bing) wrote: > > >Hello, > > > >What's the correct way to know for sure whether mod_rewrite module is > >installed or not? This is Server version: Apache/1.3.29 (Unix). I > >did 'httpd -l'. But did not see mod_rewrite. Does that mean my > >Apache server has no mod_rewrite support? > > > > mod_rewrite is usually installed as a dynamically-linked module, not > compiled into the main Apache executable. > > Check your httpd.conf for a LoadModule directive referencing > mod_rewrite.so. To be sure, you can just add a RewriteRule directive > to httpd.conf and see if Apache flags an error indicating the lack of > mod_rewrite. > > Regards, > -Claire |
|
|||
|
|