I am attempting to use WordPress in a blog/CMS situation. I have WordPress installed in the /wordpress/ directory of my server. To access the About page, you currently have to go to /wordpress/about/ but I would like a rewrite rule so the user can go to /about/ to hit the page. I tried this rule:
RewriteRule ^about/?$ /wordpress/about/
And it failed and I don't know why. Put this in the .htaccess in the / root directory of web server. I want it done manually for various reasons. I want to be able to access my blog (i.e. /wordpress/) from /blog/ - how can this be done with rewrite?
Thanks
Seb