here is the code I added to the root .htaccess file
RewriteEngine On
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} MyURL.com$
RewriteCond %{REQUEST_URI} !wordpress/
RewriteRule ^(.*)$ wordpress/$1
Ok – Here is what I am trying to do. I would deeply appreciate your help because I think I am trying to do what you describe. I want myURL.com/wordpress/home to just look like myURL.com/home.
Call my site myURL.com
wordpress exists in:
myURL.com/wordpress
I have subdirectories for each area under wordpress:
myURL.com/wordpress/home
myURL.com/wordpress/news
myURL.com/wordpress/contact
etc.
Currently, I have a redirect:
myURL.com to myURL.com/wordpress/home/index.php
I added the code you have listed above to the root directory .htaccess file (with all the redirects) and it didn’t seem to affect anything.
Not sure what is going on.