gaza165 Posted October 3, 2009 Share Posted October 3, 2009 Hi Everyone!! Im not very clear on mod_rewrite rules... In my index file i have a CASE/SWITCH block that controls what content displays on the homepage... I am trying to write my mod_rewrite to do the following.. If a user looks for.... http://www.domain.com/portfolio then it will do http://www.domain.com/?c=portfolio can someone please help me out??? thanks Garry Quote Link to comment https://forums.phpfreaks.com/topic/176366-simple-help-with-rewrite/ Share on other sites More sharing options...
cags Posted October 3, 2009 Share Posted October 3, 2009 I've very much a mod_rewrite novice myself, but I think the actual RewriteRule would be as simple as... RewriteRule /([A-Za-z]+) /?c=$i The bit in brackets is regex, so you just need to match any characters that are allowed in your url. Quote Link to comment https://forums.phpfreaks.com/topic/176366-simple-help-with-rewrite/#findComment-929663 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.