Jump to content

REwrite www.website.com/index.php?wishlist=username


gabrielkolbe

Recommended Posts

Hi I have scanned the forum but can't seem to find the answer to this, I have tried various solutions without success. Maybe someone can help.

I want to rewrite www.website.com/index.php?wishlist=username

 

To www.website.com/wishlist/username

 

or www.website.com/username

 

I don't want it to end in username.html or username.php

 

Help will be greatfully received!

Technically, you want to rewrite /wishlist/username to index.php?wishlist=username...  People say it backwards all the time.

 

 

 

Anyway, you could try something like:

 

 

RewriteEngine On

RewriteCond %{SCRIPT_FILENAME} !-f

RewriteCond %{SCRIPT_FILENAME} !-d

RewriteRule ^([^/]+)$ /index.php?wishlist=$1

Archived

This topic is now archived and is closed to further replies.

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