I posted a question the other day about how to change the displayed URL on a Wordpress-generated page, specifically from something like "mysite.com/?cat=3" to just "mysite.com". I got a few replies that steered me towards doing some type of redirect with .htacess. After some research and experimentation, I realized that it's not so much a redirect I need but just some way to alter the displayed URL in the browser.
Part of the challenge is that the page in question is dynamically generated by a combination of standard WP code, a WP event calendar plugin (the-events-calendar), and some custom code a developer added. I've played around with permalinks and the category slug, but I can't get the desired result.
The bigger question, I think, is: "Is it possible for a web server to deliver, for example, 'xyz.com/somedir/somefile.php?withsomequerystring=yes' but instruct the browser to show the URL as 'xyz.com/pretty-url' ?"
Hackers seem to be able to do all sorts of evil things to make people think they're on one web page/site when they're actually somewhere else. I would think what I'm asking is possible through htaccess/mod_rewrite, but I don't know how to achieve it. I've been banging my head against the wall on this for several weeks, so I would be thrilled if anyone had a good suggestion.
Thanks!