gabrielkolbe Posted June 26, 2009 Share Posted June 26, 2009 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! Link to comment https://forums.phpfreaks.com/topic/163751-rewrite-wwwwebsitecomindexphpwishlistusername/ Share on other sites More sharing options...
corbin Posted June 27, 2009 Share Posted June 27, 2009 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 Link to comment https://forums.phpfreaks.com/topic/163751-rewrite-wwwwebsitecomindexphpwishlistusername/#findComment-864558 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.