Forum Moderators: phranque
RewriteEngine on
RewriteRule ([^/]*)/(.*) products.php?parameter=$1/$2 [L]
The rewrite works great but all my images do not display.
I tried a leading slash like "/images/logo.gif"
I have poured over a ton of posts here and I tried this solution
RewriteCond %{REQUEST_URI}!\.(exe¦css¦js¦jpe?g¦gif)$
(I changed the ¦ symbols)
Nothing seems to work.
RewriteEngine on
RewriteCond %{REQUEST_URI} ![b]^/i[/b]mages [NC]
RewriteCond %{REQUEST_URI} !\.(jpe?g¦gif¦css¦js¦php[b])$[/b] [NC]
RewriteRule [b]^([/b][^/]*)/(.*) [b]/p[/b]roducts.php?parameter=$1/$2 [L]
Jim