Patrick3002 Posted June 20, 2007 Share Posted June 20, 2007 My current rules: RewriteEngine On 1. RewriteRule ^([A-Za-z0-9-]+)/?$ profile.php?uname=$1 2. RewriteRule ^(usr_lyrc)/([A-Za-z0-9-]+)/?$ lyric.php?uname=$2 3. RewriteRule ^(find)/([A-Za-z0-9-]+)/?$ find.php?pc=$1 4. RewriteRule ^(find)/([A-Za-z0-9-]+)/([A-Za-z0-9]+)/?$ find.php?pc=$1&q=$2 5. RewriteRule ^(artist)/([A-Za-z0-9-]+)-([^&]+).htm$ lyric.php?pc=$2&artist=$3 [L] Rewrite rules 1 and 3 conflict with actual directorys listed in my root... ex. If a user types in http://lyricdbonline.com/patrick3002 i want it to take them to http://lyricdbonline.com/profile.php?uname=$uname Also, if i type http://lyricdbonline.com/otherstuff then i want it to take me to the otherstuff DIR on my server, not http://lyricdbonline.com/profile.php?uname=$uname Does anyone know a way around this? Help is much appreciated! Link to comment https://forums.phpfreaks.com/topic/56328-mod_rewrite-dir-issues/ Share on other sites More sharing options...
hackerkts Posted June 30, 2007 Share Posted June 30, 2007 You will change to change your .htaccess alittle bit different from example 1 and 2, you can make it like http://lyricdbonline.com/patrick3002 -> http://lyricdbonline.com/profile.php?uname=$uname http://lyricdbonline.com/other/otherstuff -> http://lyricdbonline.com/profile.php?uname=$uname Link to comment https://forums.phpfreaks.com/topic/56328-mod_rewrite-dir-issues/#findComment-286460 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.