Sarthak Patel
Sarthak Patel

Reputation: 173

.htaccess url rewriting

can anybody please tell me the rewrite rule so I can make a URL like this:

From:

http://www.mysite.com/info/?file=someinfo.nfo

Into:

http://www.mysite.com/info/someinfo.png

Thanks in advance.

Upvotes: 2

Views: 204

Answers (1)

ADW
ADW

Reputation: 4080

RewriteCond %{QUERY_STRING}  ^file=([^.]*)\.nfo$
RewriteRule info/ info/%1.png

(will fail if the filename contains a "." other than the one before the extension)

Upvotes: 2

Related Questions