Hi, I'm having a problem with what seems to be conflicting URL rewrite rules. Basically the first and second rule work individually but when i add both together the second rewrite rule no longer works.
RewriteEngine On
RewriteBase /
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ site/index.php?content=$1 [L] [NC]
RewriteRule ^([^/]*)/([^/]*)/([^/]*)/$ /site/index.php?content=$1&pageNum_gproducts=$2&totalRows_gproducts=$3 [L]
I am not great with mod rewrite so any help is much appreciated