How to check whether a website is made of ASP or PHP: You can directly observe the URL suffix of the website. The URL suffix of an ASP website is generally asp or aspx, while the URL suffix of a PHP website usually ends with php.
Specific method:
1. Directly view the URL suffix of the website
(recommended tutorial: php video Tutorial)
Asp websites generally have asp or aspx at the end of their URLs, and PHP websites usually end with PHP.
2. Use the browser's developer tools to view
According to the response message returned by the website server, we can check what technology the website uses. We press the shortcut key F12 to bring up the developer tools.
When we open any file, we can see server and other information.
As shown below, we can see that the website uses PHP technology.
Related recommendations: php training
The above is the detailed content of How to check if a website is made by asp or php. For more information, please follow other related articles on the PHP Chinese website!