user3064858
user3064858

Reputation: 1

ASP.Net MVC and PHP MVC

My Question is straightforward. I come across a random website that has been developed following the MVC pattern.

But how do I determine whether it is .Net MVC or PHP MVC? Is there a viable way to tell that from any indications?

Looking ahead to some insightful answers.

Thanks.

Upvotes: 0

Views: 191

Answers (2)

Ali
Ali

Reputation: 5111

Use this browser plugin (chrome + firefox), it can do it all for you :)

Wappalyzer

Upvotes: 3

James Santiago
James Santiago

Reputation: 3062

You can check the X-Powered-By HTTP response header. If it's not repressed then you should see either asp.net or php as the value. There's also the server HTTP response header that is often set to Apache for php powered sites.

Upvotes: 0

Related Questions