Affiliate Marketing
Forum Search

Reply
 
LinkBack Thread Tools Display Modes

  #1 (permalink)  
Old 15-08-06
Wardy's Avatar
This is the one
 
Join Date: Aug 2003
Posts: 2,747
Thanks: 14
Thanked 0 Times in 0 Posts
Wardy is an unknown quantity at this point
  Filenames form the index page

I am trying to figure something out but I can't seem to get it.
I knwo how to mod_rewrite this is no problem, what I want to have working is something similar to myspace (only usiong them as they the first site that came to my head) where they have myspace.com/username rather than myspace.com/page/username

I can't figur out how they are doing it as their index page is completely different than the userspage.

Anyone help me out as currently I've got it mysite.com/user.php?user=blahblah
I can get it to mysite.com/user/blahblah easy enough but not figuing it out how to mysite.com/blahblah

I'm pretty sure it shouldn't be too hard but my mind is a blank at the moment

Cheers
Wardy
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 15-08-06
BFG 9000's Avatar
Coffee Drinker
 
Join Date: Jul 2005
Location: South UK
Posts: 243
Thanks: 9
Thanked 9 Times in 8 Posts
BFG 9000 is an unknown quantity at this point
Surely all you need to do is rewrite / with /user.php?user=


TTFN

BFG
__________________
SELECT * FROM MANAGEMENT WHERE CLUE > 0; NO RESULTS FOUND
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 15-08-06
Registered User
 
Join Date: Mar 2004
Location: Reading, UK
Posts: 301
Thanks: 0
Thanked 0 Times in 0 Posts
dmorison is an unknown quantity at this point
I think it's usually done using RewriteCond to check that the requested file does not exist before re-writing to the user page, and also by using + instead of * so that it will only match on strings of at least 1 character (this means that your default index page will not be re-written).

Code:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^(.+)$ user.php?user=$1 [L]
Not had a chance to test this but it should point you in the right direction...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 15-08-06
Super Moderator
 
Join Date: Aug 2003
Posts: 2,451
Thanks: 0
Thanked 0 Times in 0 Posts
Rich is an unknown quantity at this point
You'll want something like :-
RewriteRule ^([A-Za-z0-9]+)$ user.php?user=$1
Assuming the username can only contain letters and numbers.

Then you'll probably need to use RewriteCond rules to stop that rule being processed for some of your non user pages.

The index page might work, depending on how the rest of your server is set up. For other pages, you could just put them in a folder, which will stop the above rule from matching. A folder called - is what I've seen others use in the past, i.e mysite.com/-/aboutus.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #5 (permalink)  
Old 15-08-06
Wardy's Avatar
This is the one
 
Join Date: Aug 2003
Posts: 2,747
Thanks: 14
Thanked 0 Times in 0 Posts
Wardy is an unknown quantity at this point
Absolutely superb lads.
The RewriteCond thing works a treat, as always greatly appreciated, saved me loads of time and headaches

Cheers
Wardy
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Seach Engine Optimisation FAQ [Jan2006] thetafferboy Organic Google Search Optimisation 2 09-01-06 05:11 PM
Brand new site, PR of 3! Only index page mobillica Organic Google Search Optimisation 4 26-08-05 09:38 PM
New Programs Sporting Index and Bethilo Malcolm Cowley buy.at 0 26-08-05 07:16 PM
Valentines Day Web Page and Offers TD Nick TradeDoubler 3 28-01-05 12:05 PM
100% sure way to get Google to index your page in around 48 hours! Supercod Organic Google Search Optimisation 50 13-03-04 02:02 PM


Affiliate Marketing RSS Feeds - Contact Us - Affiliate Marketing - Archive - Privacy Statement - Top

Content Relevant URLs by vBSEO 3.2.0 RC7