Reputation: 1
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
Reputation: 5111
Use this browser plugin (chrome + firefox), it can do it all for you :)
Upvotes: 3
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