Amazon EC2 Linux lnmp下常用命令
记录常用,供自己使用,最近在用EC2,现在免费试用,网上搜来搜去,摸索到的。菜鸟一只,记性不好,也记下,怕忘咯。 (more...)
记录常用,供自己使用,最近在用EC2,现在免费试用,网上搜来搜去,摸索到的。菜鸟一只,记性不好,也记下,怕忘咯。 (more...)
折腾了下xenforo,nginx下,涉及到伪静态,需要去掉“index.php?”,由于xenforo在国内这方面的知识并不多,去官方看了下friendurl,使用里面的代码有点小错误提示502错误。 官方的代码 123456789101112131415161718location /xf/ { try_files $uri $uri/ /xf/index.php?$uri&$args; index index.php index.html; } location /xf/internal_data/ { internal; } location /xf/library/ { internal; } location ~ \.php$ { try_files $uri =404; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include […] (more...)
如果仅仅是对某个页面进行301跳转,其实很简单,只要在PHP页面的头部输入下面的代码就可以。 (more...)