tronicsmasta Posted January 18, 2009 Share Posted January 18, 2009 hello, I am trying to use mod_rewrite to make urls friendly... but at this time the majority of the code relies on SID being a # and CID being a number eg: domain.com?sid=10&cid=205 I would like to take a word in the URI and change it to 10 eg: myword = 10 eg: domain.com/myword/205 is actually domain.com?sid=10&cid=205 so far my #'s in the URI are working just fine .htaccess RewriteEngine On RewriteRule ^/?([0-9]+)/([0-9]+)$ [NC] index.html?sid=$1&cid=$2 ideas?? thank yOU! Quinton Link to comment https://forums.phpfreaks.com/topic/141380-mod_rewrite-convert-word-to-number/ Share on other sites More sharing options...
sKunKbad Posted January 19, 2009 Share Posted January 19, 2009 something like this: RewriteRule ^(myword)/([0-9]*)$ /index.html?sid=10&cid=$2 the backslash before index might need to be removed??? Link to comment https://forums.phpfreaks.com/topic/141380-mod_rewrite-convert-word-to-number/#findComment-740121 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.