Tag: Servers

What are .htaccess files?

If you were working with WordPress you probably noticed that the installation includes a .htaccess file in its main directory. Whate are these files? The .htaccess file set specific directives for the server that should be executed when an Apache server is handling requests. In the default case of WordPress it makes the server point […]

Finding out PHP server interface

There are many ways of executing a PHP script. For example you might run it directly from a command line: Other option, readily available for tesing since PHP 5.4, is to spin up the internal PHP server and see the result in a browser: If you create a simple page with the function php_sapi_name you […]