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. Quote Link to comment 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 Quote Link to comment 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.