Anyone any good at mod rewrite? I've having a few problems at mpsounds.net.
What I'm trying todo is:
/soundpacks/category/english --> /soundpacks.php?nonsearch=1&cat=english
/soundpacks/category --> /soundpacks.php?nonsearch=1&catid=-1
/soundpacks --> /soundpack.php
.htaccess
code:
RewriteRule ^soundpacks/category/(.+) soundpacks.php?nonsearch=1&cat=$1 [nc]
RewriteRule ^soundpacks/category soundpacks.php?nonsearch=1&catid=-1 [nc]
RewriteRule ^soundpacks soundpacks.php [nc]
/soundpacks/category/english and /soundpacks both work, but /soundpacks/category doesn't. I don't really understand why. Any ideas?