user2133694
user2133694

Reputation: 23

Rewrite dynamic URL to another dynamic URL

I need to Rewrite http://www.domain.net/img.php?id=example.jpg to http://www.domain.net/index.php?id=example.jpg

example.jpg is changing. I am not common with htaccess syntax. Can someone help me please?

Upvotes: 1

Views: 40

Answers (1)

anubhava
anubhava

Reputation: 785156

Enable mod_rewrite and .htaccess through httpd.conf (if not already enabled) and then put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule ^img\.php$ /index.php [L,NC]

QUERY_STRING will automatically be carried over to /index.php

Upvotes: 2

Related Questions