- npm切换淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
之后就可以再项目中使用
cnpm install
安装所需要的依赖包
- vim设置tab为四个空格
一种是全局设置,另外一种是针对用户设置
vim /etc/vimrc
or
vim ~/.vimrc
在打开的文件中添加
set tabstop=4
set softtabstop=4
set shiftwidth=4
set noexpandtab
参考:https://www.linuxidc.com/Linux/2015-08/121703.htm
- 在vim中打开时,提示只读文件,这时我们发现已经更改了内容,想保存更改的内容,可以使用以下命令:
w !sudo tee %
http://blog.chinaunix.net/uid-21843387-id-105990.html
- 在lnmp中搭建laravel环境后,自定义路由无法显示,提示404错误,这时需要更改nginx关于网站的配置,在配置文件中添加:
location / {
try_files $uri $uri/ /index.php?$query_string;
}