| PHP, MySQL General PHP questions. Or go to our PHPsuexec Forum >> |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread |
|
|
#10 (permalink) | |
|
Caffeine fiend
Comfy Contributor
Joined in Aug 2004
Lives in Reston, Virginia
Hosted on pass15
270 posts
Gave thanks: 0
Thanked 0 times
|
Quote:
2. Many search engines get confused with long URLs. These "flat" URLs look for all purposes like static html pages. 3. Whenever talking to a customer over the phone it is much easier to tell them to "go to oursite.com/clients" than to give them the longer URL. Basically we are giving them less of an opportunity to screw it up. #3 is really painful, it happened to us so much that I had to convert pretty much all our public pages to use flat urls, then on top of that wrote a ripoff of tinyurl.com so we can take any URL and crunch it down to something easier for the customer to handle. |
|
|
|
|
|
|
#11 (permalink) | |
|
Surpass Fan
Super #1
Joined in Dec 2003
Lives in NJ
5,057 posts
Gave thanks: 0
Thanked 4 times
|
Quote:
![]() |
|
|
|
|
|
|
#12 (permalink) |
|
the one who was
Super #1
Joined in Jul 2003
Lives in Memphis
1,967 posts
Gave thanks: 0
Thanked 3 times
|
Personally, I use this system for security believe it or not. I mean, if I can make a page be displayed by using an alias in the URL, I could name my contact, main, etc.. pages whatever I wanted (AXZHDHDhdl10289.php) and never have to worry with someone getting direct access to them. Keep your security tight in the main page and all works out well, though you should never forget about the other pages and their security.
Also, one side point, I see this in many scripts. If the file doesn't evaluate to something in the script, it is assumed that the file is still on the local system and valid. A lot of scripts automatically assume that the info passed to them is a valid file on the server, which is a big no-no. Code:
default: include($act); break;
__________________
Patrick Warnings: The program(s) might crash unexpectedly or behave otherwise strangely. (But of course, so do many commercial programs on Windows.) --www.gimp.org |
|
|
|