Skip to content

Comment on Ask HN: PHP Directory structure and code organization

Comments

Just a tip, load as much as you can get away with (configuration, ESPECIALLY) outside of your webroot.

BAD:

* /var/www/config/mysql.json

* /var/www/static/site.css

* /var/www/index.php

* $_SERVER['DOCUMENT_ROOT'] = '/var/www';

GOOD:

* /var/www/config/mysql.json

* /var/www/public/static/site.css

* /var/www/public/index.php

* $_SERVER['DOCUMENT_ROOT'] = '/var/www/public';

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.