I have Magento, Wordpress, and Fishpig installed and running and everything is working well. But for SEO purposes, we need:
#'catname' is short for a wordpress category name
www.magentosite.com/catname
to silently redirect to...
#'wpurl' is the wordpress sub-directory
#set to serve the wordpress instance
#this is NOT the wordpress installation directory
www.magentosite.com/wpurl/.../catname
We've tried modifying the .htaccess but the following rewrite rule returns a 404 from Magento.
RewriteRule ^catname$ ^wpurl/.../catname$ [L]
The following RewriteRule did work, but it did not redirect silently, which we need.
RewriteRule http://www.magentosite.com/catname http://www.magentosite.com/wpurl/.../catname
We currently have the fishpig wordpress environment set to integrated. Any ideas?