Hello. I've checked the regexs and they all match but for some reason its not working in mod_rewrite?
I would like
http://www.system.com/chips/intel?c=xxx
to read:
http://www.system.com/chips/intel/xxx
I have:
RewriteCond %{REQUEST_URI} (c=.*)$
RewriteRule (/([^/]+)/?).*?c=(.*) http://%{SERVER_NAME}/$1/$2/ [L]
And I'm getting an error. What's going on here?