Ever wondered how to have you own file extension instead of the boring .php? Just like arstechnica has .ars ? Well with just one line of code, you can make your webserver accept your custom extension!
Open the apache httpd.conf file
Add the line “AddType application/x-httpd-php .bot” without the quotes. What it does is instruct the server that .bot extension is a php file and that it should be treated as a normal php file
Rename your php file with extension bot
Open in web browser and see the magic!