case sensitive URLs

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
GeXus
Forum Regular
Posts: 631
Joined: Sat Mar 11, 2006 8:59 am

case sensitive URLs

Post by GeXus »

Does anyone know how to not require case sensitive pages? Im using apache (if that's where it would be changed).. but i have a page named addProduct.php and if i go to addproduct.php it doesnt come up.
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post by superdezign »

I'm sure theres a better fix, but temporarily (until someone familiar with Apache responds), just make an addproduct.php file and have it redirect to the addProduct.php file

<? header('Location: addProduct.php'); ?>
Post Reply