medinadato / mdn-sample
该包最新版本(dev-master)没有可用的许可信息。
MDN 示例
dev-master
2013-01-04 01:14 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-28 14:37:54 UTC
README
#MDN 示例
这只是一个 composer 包测试,请勿认真对待。
##安装
###设置您的 VHOST
以下是一个您可能想为您的项目考虑的示例 VHOST。
<VirtualHost *:80>
DocumentRoot "/whatever"
ServerName local.mdn-sample
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory "/whatever">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>