编辑wp-config.php配置文件,在以下内容之前添加:
require_once(ABSPATH . 'wp-settings.php');
管理员登录使用SSL:
define('FORCE_SSL_ADMIN', true);
所有用户登录强制使用SSL:
define('FORCE_SSL_LOGIN', true);
发布时间:March 24, 2013 // 分类:WordPress // No Comments
编辑wp-config.php配置文件,在以下内容之前添加:
require_once(ABSPATH . 'wp-settings.php');
管理员登录使用SSL:
define('FORCE_SSL_ADMIN', true);
所有用户登录强制使用SSL:
define('FORCE_SSL_LOGIN', true);
发布时间:March 24, 2013 // 分类:WordPress // No Comments
锚文本链接在网站优化中有很重要的作用,WoredPress可通过添加函数设置特定关键字自动添加链接。
function replace_text_wps($text){
$replace = array(
'海运的博客' => '<a href="https://www.haiyun.me.com/" rel="home">海运的博客</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
发布时间:March 17, 2013 // 分类:WordPress // No Comments
function rel_nofollow( $content ) {
return preg_replace_callback( '/<a[^>]+/', 'rel_nofollow_callback', $content );
}
add_filter( 'the_content', 'rel_nofollow', 99999 );
function rel_nofollow_callback( $matches ) {
$link = $matches[0];
$exclude = '('. home_url() .'|http://([^.]+\.)?(wp.org|wp.com))';
if ( preg_match( '#href=\S('. $exclude .')#i', $link ) )
return $link;
if ( strpos( $link, 'rel=' ) === false ) {
$link = preg_replace( '/(?<=<a\s)/', 'rel="nofollow" ', $link );
} elseif ( preg_match( '#rel=\S(?!nofollow)#i', $link ) ) {
$link = preg_replace( '#(?<=rel=.)#', 'nofollow ', $link );
}
return $link;
}
发布时间:March 6, 2013 // 分类:Nginx,PHP,网络安全 // No Comments
先了解一下网站正常运行所用到的用户、目录权限:
Nginx进程运行用户:接收用户请求,处理静态文件,如果是PHP则转给PHP-CGI处理,网站目录拥有读权限。
PHP-cgi进程用户:处理PHP文件,网站目录拥有读权限,个别目录需要写入权限。
<value name="pid_file">/usr/local/php/logs/php-fpm.pid</value>
<value name="error_log">/usr/local/php/logs/php-fpm.log</value>
<value name="listen_address">/tmp/www.haiyun.me.sock</value>
<value name="user">www.onovp.com</value> #PHP-CGI运行用户组
<value name="group">www.haiyun.me</value>
启动PHP-CGI进程:
/usr/local/php/bin/php-cgi --fpm --fpm-config /usr/local/php/etc/www.haiyun.me.conf
chown -R www.haiyun.me:www /home/wwwroot/www.haiyun.me
chmod -R 550 /home/wwwroot/www.haiyun.me
chmod 701 /home/wwwroot/
location ~ .*\.(php|php5)?$
{
fastcgi_pass unix:/tmp/www.haiyun.me.sock;
fastcgi_index index.php;
include fcgi.conf;
}
php-cgi进程简单管理脚本:
#! /bin/sh
# chkconfig: 2345 55 25
#https://www.haiyun.me
cgi=/usr/local/php/bin/php-cgi
case "$1" in
start)
for conf in `ls /usr/local/php/etc/*.conf`
do
$cgi --fpm --fpm-config $conf
done
;;
stop)
for pid in `ls /usr/local/php/logs/*.pid`
do
kill -TERM `cat $pid`
done
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
发布时间:March 5, 2013 // 分类:AutoHotKey // No Comments
#IfWinActive ahk_class ConsoleWindowClass
^l::Send cls{Enter} ;清除屏幕
^u::Send ^{Home} ;删除当前行光标前内容
^k::Send ^{End} ;删除当前行光标后内容
^a::Send {Home} ;转到行首
^e::Send {End} ;转到行尾
^p::Send {Up} ;上一个命令
^n::Send {Down} ;下一个命令
^b::Send {Left} ;转到前一个字符
^f::Send {Right} ;转到后一个字符
^d::Send {Delete} ;删除后一个字符
^v::send %Clipboard% ;粘贴
!b::Send ^{Left} ;前一个单词
!f::Send ^{Right} ;后一个单词
Return