Hi, i have an issue with my .htacess file. It is redirecting 2 different url to same file.
I have below code in my htacess:
1st rule is redirecting demo-page to demo_page_1.php but 2nd rule is also redirecting demo-page-new to demo_page_1.phpCode:RewriteRule demo-page demo_page_1.php
RewriteRule demo-page-new demo_page_2.php
I guess, issue is with the first same keyword. How can i fix it?
