前言
当公司有一个首页,一个测试页的时候会用到nginx的伪静态 当index.php与index1.php,的时候可以用到。
峰会路转言归正传开整
location / {
index index.html index.htm index1.php index.php;
}
#有”定位”的意思, 根据Uri来进行不同的定位.
#在虚拟主机的配置中,是必不可少的,location可以把网站的不同部分,定位到不同的处理方式上.
location ~ \.php$ {
https://help.aliyun.com/knowledge_detail/38859.html
安装配置Composer
注:Composer是PHP编程语言软件包管理器提供的一个标准格式的管理所需PHP软件和库的依赖关系。
1、安装Composer。
# curl -sS https://getcomposer.org/installer | phpAll settings correct for using ComposerDownloading 1.2.4...Composer successfully installed to: /root/composer.pharUse it: php composer.phar
2、配置 composer全局使用。
# mv /root/composer.phar /usr/bin/composer
3、测试命令是否可用。
# composer -v ______ / ____/___ ____ ___ ____ ____ ________ _____ / / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___// /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/ /_/Composer version 1.2.4 2016-12-06 22:00:51
步骤四:安装配置Magento
注:可以使用许多不同的方法安装magento,也可以选择是否安装示例数据。测试目的安装Magento,您可以选择安装示例数据;生产环境中安装Magento,建议选择安装全新的Magento,从头开始配置。安装Magento的最好方法是使用Git下载Magento clone,然后使用composer安装。
1、下载安装Magento
通过安装git clone下载安装Magento 。
# yum -y install git# cd /var/www/html/# git clone https://github.com/magento/magento2.git
2、切换到稳定版本
默认情况git下载安装Magento是一个最新的开发版本,生产环境中如果没有使用稳定版,那么未来将无法升级安装。
# cd magento2 && git checkout tags/2.1.0 -b 2.1.0Switched to a new branch '2.1.0'
3、移动安装文件到web服务器根目录下
如果不移动则需访问:http://Your-Server-IP/magento2
# shopt -s dotglob nullglob && mv /var/www/html/magento2/* /var/www/html/ && cd ..
4、设置magento文件适当的权限。
# chown -R :apache /var/www/html# find /var/www/html -type f -print0 | xargs -r0 chmod 640# find /var/www/html -type d -print0 | xargs -r0 chmod 750# chmod -R g+w /var/www/html/{pub,var}# chmod -R g+w /var/www/html/{app/etc,vendor}# chmod 750 /var/www/html/bin/magento
5、安装Magento。
# composer install
6、完成配置
基于web接口通过浏览器访问:http://Your-Server-IP
按实际情况填写连接数据库信息,web访问设置,定制商店,创建管理员账号。
总结:多学python吧!