I am trying to create a root username using ISAPI Rewrite.

E.g. www.mysite.com/myusername

I want this to redirect to...

/user.asp=myusername

Then if the username is not found to load content based on the /folder/

Maybe it would be good to check if a file with folder.asp extension exists and if not redirect to user.asp?username=folder

I know the easy option is to just write the .htaccess to reference:

www.domain.com/user/username

But I really want the root URL?

Thanks in advance,

Chris

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
+50

I know the easy option is to just write the .htaccess to reference:

I guess your Isapi Rewrite module is Helicon's 3.0.
Checking file/folder existence using Rewrite Module is more efficient than using scripting language.
Write a rule that compatible with your username format (valid characters etc, see the comments).
Check the matched part. Make the redirect if it's not an exists file / folder.

RewriteEngine On
# if file is not exists
RewriteCond %{DOCUMENT_ROOT}/$1 !-f
# if folder is not exists
RewriteCond %{DOCUMENT_ROOT}/$1 !-d
# From start to end, "^(\w+)[/]+$" only matches with one or more alphanumeric characters and "_".
# Alternatively can end with one or more slashes.
# Change [R = 302, L] to [L] if you want make a rewrite instead of redirect.
RewriteRule ^(\w+)[/]*$ /user.asp?username=$1 [R = 302, L]
link|improve this answer
That is really great! but is there a way to not redirect to /user.asp?username=$1 URL but to just display the content? – Chris Dowdeswell Dec 19 '11 at 9:22
Oh actually I just realised the comments! – Chris Dowdeswell Dec 19 '11 at 9:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.