Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I want to redirect to page url from image url.

i.e. nevil120.herobo.com/images/Chrysanthemum.jpg
to
nevil120.herobo.com/index.php?image=free

The redirection should happen but url should not be changed in browser. Url should remain as "nevil120.herobo.com/images/Chrysanthemum.jpg" and page should load.

How to achieve it through redirection rules of .htaccess?
Posted

1 solution

SQL
Try this code


RewriteEngine On
Options +FollowSymLinks
RewriteCond %{REQUEST_URI} ^/tour
RewriteRule ^(.*)$ / [P]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900