Hey all, For some reason a few of my RewriteRule's seem to be conflicting with one another. I have several rules, but these are the conflicting ones: Code: RewriteRule ^([a-zA-Z0-9_-]+)/page=([0-9_-]*)$ /pages.php?cat_id=$1¤tpage=$2 [L] RewriteRule ^([a-zA-Z0-9_-]+)$ /pages.php?cat_id=$1 [L] Code (markup): The rule above works fine (i can go to /category fine, it goes to the proper page and everything). But once I add in: Code: RewriteRule ^([a-zA-Z0-9_-]+)$ /index.php?order=$1 [L] RewriteRule ^([a-zA-Z0-9_-]+)/page=([0-9_-]+)$ /index.php?order=$1¤tpage=$2 [L] Code (markup): The first part stops working (the pages.php rule), but these new rules work fine (the ?order= rules)... The ?order= rules are above the pages.php rule in my .htaccess file, but when I put the order rule below the pages.php rule, then the categories rule works fine, while the order rule no longer does... so confused :/ As always, any kind of help is appreciated!
Hello, Do you have cPanel installed on your server so that you can redirect option to put redirection rules.
This is actually on my test XAMPP server right now. But I do not think I have that option on my hosts control panel