I have follwing code in .htaccess file
Options +FollowSymLinks
RewriteEngine on
RewriteRule tricks tricks.php?show=all [NC,L]
RewriteRule tricks/ tricks.php?show=all [NC,L]
I don’t know why my page is loading twice
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try adding the following to your htaccess file in the root directory of your site.
It will prevent the looping present in your example
You can replace the above with the solution below which includes the additional requirements you had.