Jump to content
MakeWebGames

mod_rewrite


mikemastah

Recommended Posts

Guest Anonymous

Re: mod_rewrite

 

RewriteEngine On
RewriteRule ^([^/]*)/$ /user.php?username=$1 [L]
RewriteRule ^([^/]*)/([^/]*)/$ /user.php?username=$1&error=$2 [L]

 

first would display as "http://example.com/username/" & second rewrite rule as "http://example.com/username/error/"

Though, if you want to keep the "user" in the url..

RewriteEngine On
RewriteRule ^user/([^/]*)/$ /user.php?username=$1 [L]
RewriteRule ^user/([^/]*)/([^/]*)/$ /user.php?username=$1&error=$2 [L]

I would use this one, since i'd usually have other rewrote url's throughout the site.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...