gaza165 Posted December 19, 2008 Share Posted December 19, 2008 i need a rewrite function to be able to allow me to to this instead of http://www.thedesignmonkeys.co.uk/index.php?c=fb&title=My First Blog i want it to be http://www.thedesignmonkeys.co.uk/fb/My_First_Blog this is what i have Options -Indexes RewriteEngine On RewriteBase / DirectoryIndex index.php RewriteRule ^([A-Z])/(A-Z) index.php?c=$1&title=$2 Link to comment https://forums.phpfreaks.com/topic/137692-mod_rewrite-help/ Share on other sites More sharing options...
phpian Posted December 19, 2008 Share Posted December 19, 2008 how about using what you have but in index.php do a str_replace to change '_' to ' ' Link to comment https://forums.phpfreaks.com/topic/137692-mod_rewrite-help/#findComment-719728 Share on other sites More sharing options...
gaza165 Posted December 19, 2008 Author Share Posted December 19, 2008 yeah i have done, that is what im doing but the rewrite rule wont work basicially the c=fb this is the case that i am using as i am using a swich/case method in my index page so that all pages can be included from the index.php instead of duplicating the pages. Link to comment https://forums.phpfreaks.com/topic/137692-mod_rewrite-help/#findComment-719764 Share on other sites More sharing options...
phpian Posted December 19, 2008 Share Posted December 19, 2008 RewriteRule ^([_\+A-Za-z0-9]+)/([_\+A-Za-z0-9]+)?$ index.php?c=$1&title=$2 could be something like that. Link to comment https://forums.phpfreaks.com/topic/137692-mod_rewrite-help/#findComment-719787 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.