Installation Error mod_rewrite is not enabled. Apache's mod_rewrite extension m

I'm having another issue with my Omeka upgrade from 1.2.1 to 2.0.4...

When I point via the browser to the "/install" directory I get this error:

Installation Error
mod_rewrite is not enabled.

Apache's mod_rewrite extension must be enabled for Omeka to work properly. Please enable mod_rewrite and try again.

I have set all entries in my /etc/httpd/conf/httpd.conf to "AllowOverride All"

I have set these settings in all three of my .htaccess files:

- /var/www/html/.htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d [OR]
# This ensures that Apache will not mistake the URL mysite.com/archive/ for a request for the physical directory that stores files
RewriteCond %{REQUEST_URI} .+\/archive\/
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

RewriteBase /

- /var/www/html/admin/.htaccess

RewriteEngine on

# If know that mod_rewrite is enabled, but you are still getting mod_rewrite errors,
# uncomment the line below and replace "/admin/" with your install directory.

RewriteBase /admin/
RewriteBase /install/

RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

- /var/www/html/install/.htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d [OR]
# This ensures that Apache will not mistake the URL mysite.com/archive/ for a request for the physical directory that stores files
RewriteCond %{REQUEST_URI} .+\/archive\/
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

RewriteBase /install

I can't figure it out...

Any help would be appreciated...

thanks!

Update:

I heard back from John Flatness about this.

Here is the fix:

*** Fix for mod_rewrite not enabled:
- Use the .htaccess file from the new version of omega 2.0.x
- Only use one .htaccess file in the root of /var/www/html/. Remove the other files from /admin and /install