Jump to content

URL not found error in apache server


jgkgopi

Recommended Posts

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]

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.