ubuntu-基本操作


卸载软件 

sudo apt-get remove --purge 软件名
sudo apt-get update



lnmp配置

Nginx伪静态规则    对 wordpress 写规则

Nginx环境一般是Linux 主机 VPS或服务器用户用的比较多,这些用户一般都会自己配置Nginx,或者有专门的人帮你配置,打开 nginx.conf 或者某个站点的配置环境,比如 wpdaxue.com.conf(不同人配置的不一样),在  server   { } 大括号里面添加下面的代码:
location / {
    if (-f $request_filename/index.html){
    rewrite (.*) $1/index.html break;
    }
    if (-f $request_filename/index.php){
    rewrite (.*) $1/index.php;
    }
    if (!-f $request_filename){
    rewrite (.*) /index.php;
    }
}
保存,重启 Nginx 即可。

  收集至: http://www.phperblog.cn/305/


lnmp集成软件域名配置

http://lnmp.org/faq/lnmp-vhost-add-howto.html 



你可能感兴趣的:(ubuntu-基本操作)