Jump to content

how to get a short URL for every person registering on the site


bambinou

Recommended Posts

Dear all,

 

i would like to know something about mp3 sites,when you are an artist an would like to create a band page,some sites offer the possibility to add your band name just after their own url.example:

i register my band as mixin-extra

 

the website is called :

www.theirsite.com

 

the end URL will then become www.theirsite.com/mixin-extra

 

i have absolutly no clue on how they do this,could someone show me a code example of how they can add the name straight after the URL.

i would also like to know if this does not cause a security problem to show the direct URL of the band file.

 

 

thanx for your help.

 

 

              ben ??? ??? ???

Link to comment
Share on other sites

Assuming you have one index.php file that serves up each artists profile via a url querystring. ie index.php?id=foo then a simple mod_rewrite rule should ahieve what you want.

 

Something like...

 

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z]+)$ index.php?id=$1 [L]

 

Read up on mod_rewrite in the Apache manual for more details.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.