Richard Knop
Richard Knop

Reputation: 83697

How to rewrite this URL?

So I would like to rewrite this URL:

http://localhost/mock/foo.php?lang=eng&userID=2

To:

http://localhost/apiMethod.pl?lang=eng&userID=2

So when I call http://localhost/apiMethod.pl?lang=eng&userID=2 in the browser, it will actually go to http://localhost/mock/foo.php?lang=eng&userID=2.

Upvotes: 0

Views: 42

Answers (1)

Richard Knop
Richard Knop

Reputation: 83697

RewriteRule ^apiMethod\.pl$ mock/foo.php [QSA]

Upvotes: 1

Related Questions