When ever I go to US/Florida/ its gives me a 404 error when it should show up a default page.
When ever I go to US/Florida/Page1 it works.
But when ever I use the US/State/Page... the page doesn't really work because of its links to files in other folders (example. stylesheet in site.com/css)
When ever I go to US/Florida/ its gives me a 404 error when it should show up a default page.
When ever I go to US/Florida/Page1 it works.
But when ever I use the US/State/Page... the page doesn't really work because of its links to files in other folders (example. stylesheet in site.com/css)
Why is that happening?
You're likely using relative paths to the images/files etc... so what you'd probably want to do is change the generated links (based on the header info) to be something like ../../mystylesheet.css where the page is US/Florida/blah.php etc.. Don't forget that as far as the page is concerned it is actually at that /US/Florida location, apache does all the necessary translation to make it work.