mod_rewrite not working but is installed

I've been working on getting a LAMP server up and running for 6 big sites that have to be moved onto it ASAP! They are dragging down our other cpanel server.

TBH, this is the most I've dived into Apache configuration in years.

I've gotten mod_rewrite built into Apache 2.0.55:
Code:
[root@b5media02 httpd-2.0.55]# httpd -l
Compiled in modules:
  core.c
  mod_access.c
  mod_auth.c
  mod_cache.c
  mod_include.c
  mod_deflate.c
  mod_log_config.c
  mod_env.c
  mod_mime_magic.c
  mod_expires.c
  mod_headers.c
  mod_usertrack.c
  mod_setenvif.c
  mod_proxy.c
  proxy_connect.c
  proxy_ftp.c
  proxy_http.c
  mod_ssl.c
  prefork.c
  http_core.c
  mod_mime.c
  mod_status.c
  mod_autoindex.c
  mod_asis.c
  mod_info.c
  mod_cgi.c
  mod_vhost_alias.c
  mod_negotiation.c
  mod_dir.c
  mod_imap.c
  mod_actions.c
  mod_speling.c
  mod_userdir.c
  mod_alias.c
  mod_rewrite.c
  mod_so.c
But when I try to test for it, I get a 404... not a 500. I take this to mean that the module is found but something isn't grokking right.
Code:
-sh-3.00$ cat .htaccess
Options +FollowSymLinks
RewriteEngine On
The access and error logs:
Code:
[root@b5media02 httpd-2.0.55]# tail /usr/local/apache/logs/access_log                                                         

68.55.184.139 - - [23/Jan/2006:22:22:43 -0600] "GET /rewrite-testfolder/ HTTP/1.1" 404 217

------
[root@b5media02 httpd-2.0.55]# tail /usr/local/apache/logs/error_log   
[Mon Jan 23 22:22:43 2006] [error] [client 68.55.184.139] File does not exist: /home/tgb/www/rewrite-testfolder
Help!

 

 

 

 

Top