Hello, My .htaccess file is this RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule /(.*)$ nutrition.php?id_baseurl=$1 RewriteRule /(.*)$ mobiles.php?baseurl=$1 RewriteRule /(.*)$ aircon.php?id=$1 but it is considering the last rewriterule, what is the problem? Thanks in advance!
If all those id will be the same, what happens then? You will have 3 different pages linking to one, so you lose two.
As the previous commentar said, you have three rules, exactly the same, which all redirect to different pages - that will, of course, not work. You will need more distinct starting points, or some other way of linking to different parts of your site.