I have an Apache2 web site with several different resources all installed directly under the DocumentRoot:
- http://example.com/mycodeigniterapp
- http://example.com/wordpress
- http://example.com/phpmyadmin
- etc. etc.
GOAL: I'd like for users to go to WordPress automatically, by typing http://example.com
, instead of http://example.com/wordpress
. But I also need to be able to access the other resources off the root. For example, the URL http://example.com/mycodeigniterapp
still needs to work as-is?
Q: What's a good way to "hide" the word "wordpress" from the URL, without "breaking" any existing functionality?
Thank you in advance!