up vote 0 down vote favorite
share [g+] share [fb]

I want to catch all URL's in the root folder of the url www.example.com

The url cannot end in a trailing slash, and can't contain any slashes at all.

so these should pass:

www.example.com/abc www.example.com/abc123-asdf www.example.com/abc123/ ** fail!

www.example.com/asdfsd/asdf ** FAIL!

link|improve this question
feedback

2 Answers

Already Asked

link|improve this answer
feedback

What web server are you using? If you're using Apache, what you want is URL Rewriting (mod_rewrite)

http://httpd.apache.org/docs/2.0/misc/rewriteguide.html

It has full regular expression support. and can automatically change all offending requests to the default url for you.

link|improve this answer
For IIS, you can use ISAPI Rewrite from Helicon, what is equivalent to mod_rewrite for Apache: isapirewrite.com – ARemesal Nov 17 '08 at 9:57
feedback

Your Answer

 
or
required, but never shown