Ok, I've got an .htaccess file setup like so:
Maybe its just from staring at it for too long but I can't figure out why the compare rewrite rules aren't working, my querystring isn't being passed to the page it redirects to but on all the other ones it works fine... It's probably some stupid period or some random character I'm not seeing but any ideas as to why just that one section isn't working would be great.
Thanks
Code:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine on
#THIS SECTION WORKS
#query
RewriteRule ^find/([^/]+) /list-products.php?q=$1 [NC]
#THIS SECTION WORKS
#category
RewriteRule ^find/c/([^/]+) /list-category.php?c=$1 [NC]
#THIS POS DOESNT FUCKING WORK I'M READY TO SHOOT THE DAMN SERVER
#compare sku
RewriteRule ^compare/sku/([^/]+) /compare.php?sku=$1 [NC]
#THIS WORKS FINE AS WELL
#buy sku
RewriteRule ^buy/sku/([^/]+) /buy.php?sku=$1 [NC]
#404
ErrorDocument 404 /index.php
</IfModule>
Thanks