clanstyles Posted November 13, 2007 Share Posted November 13, 2007 Okay, I googled about "Chain" Mod_Rewrites, I came up with nothing. From what I understand, they are like index.php?a=nameofthething thats turned into /nameofthing/ Then with chain on it can go on to check for many other arguments that would arise like mabye the id /nameofthing/id/ or something else. Then theres my problem of this: #Rewrite Rules RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?module=$1 [QSA,C] RewriteRule ^catagories/([A-Za-z0-9])$ index.php?module=catagories&cat=$1 [QSA,C] As you can see I tried to use Chain, couldn't understand it. Then, I just tried that. it is supposed to turn out /catagories/blahw/ but it gives a 404 error. Link to comment https://forums.phpfreaks.com/topic/77200-simple-mod_rewrite-help/ Share on other sites More sharing options...
hackerkts Posted November 18, 2007 Share Posted November 18, 2007 What about this? RewriteEngine on RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?module=$1 RewriteRule ^catagories/([A-Za-z0-9]+)$ index.php?module=catagories&cat=$1 Link to comment https://forums.phpfreaks.com/topic/77200-simple-mod_rewrite-help/#findComment-393726 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.