RewriteEngine On
RewriteBase /aaaautoparts.us/

# If the request matches an actual file or directory, serve it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Otherwise, silently pass the request to index.php with Query Strings Appended (QSA)
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
