I have created a .htaccess file in the base of my wordpress installation on dreamhost, but it doesn't seem to be working yet. Want to direct any requests to page_id of 7 to the page id of 43.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule http://www.myapp.com/?page_id=7 /?page_id=43 [NC,L]
</IfModule>
Actually do I need to do anything to trigger apache to pick this up too, other than just saving the file? Any way to look for log file entries to help pin point the issue?
Try the following:
With this ruleset you can also be a lot more specific by e.g. providing an optional pretty URL that pointed to the same page, etc.