I have a wordpress site hosted on a godaddy server running apache. My experience is on windows iss so this might be an easy question but I can't figure it out. I want to allow urls at my site like:
http://my.site.com/biz/Jordan's_place/jordan/
The problem is two fold.
1) If I enter:
http://my.site.com/biz/Jordan's_place/jordan/
the url is fine but if I enter:
http://my.site.com/biz/Jordan's_place/jordan
the url is rewritten to:
http://my.site.com/biz/Jordans_place/jordan/
Note the lost single quote is shown in the browser address.
2) The page requires memebr acce3ss. When you browse to it without logging in you are sent to the login page with the url:
/wp-login.php?redirect_to=/biz/Jordan\'s_place/jordan/
note the added backslash and then after login the page goes to:
http://my.site.com/biz/Jordans_place/jordan/
Is it wordpress or the server that is messing with the single quotes? Am I crazy to want to allow single quotes in my urls? If so why doesn't php or javascript encode them?
Thanks guys.
