jgkgopi Posted June 12, 2011 Share Posted June 12, 2011 i have create a folder and upload my file Folder name is Forum if i type http://ipogtech.com/Forum/ it's working But the URL http://ipogtech.com/forum it'not working pls help me to change it Case insensitive URL’s Quote Link to comment Share on other sites More sharing options...
fugix Posted June 12, 2011 Share Posted June 12, 2011 im assuming you're on a linux server or this wouldn't be an issue since windows servers do not have an issue with this, unfortuantely, if your url has a upper case letter, there is not way to make it work, i would advise always making your filenames lower case to avoid this issue. However if your urls are all lower case and you want to avoid this issue for other users that type in your url and may mistakingly type an uppercase letter, you can use mod_rewrite to convert user requests to all lowercase. RewriteEngine on RewriteBase / RewriteMap insensitive tolower: RewriteRule ^[\/]*(.*)$ /${insensitive:$1} [R,L] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.