All,
Firstly sorry if this was already posted but i can't seem to see the post.
I was hoping to create some category specific pages but would like to automate the process as much as possible without the need to create manual pages.
For example, if you click domain.co.uk/tv or domain.co.uk/sofas - it would then take you to an index page specific for that particular category.
Hope this makes sense!?
O/T - David - thanks for your support on the query - great service!
Regards,
Michael
Hi Michael,
Sure - you can add this as an alternative version of the rewrite rule for the category index pages. Try adding this to the end of your .htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ search.php?q=category:$1:&%{QUERY_STRING} [L]
Cheers,
David.