摘要: 1.给子域名加www标记RewriteCond %{HTTP_HOST} ^([a-z.]+)?example\.com$ [NC]RewriteCond %{HTTP_HOST} !^www\. [NC]RewriteRule .? http://www.%1example.com%{REQUEST_URI} [R=301,L]这个规则抓取二级域名的%1变量,如果不是以www开始,那么就加www,以前的域名以及{REQUEST_URI}会跟在其后。 2.去掉域名中的www标记RewriteCond %{HTTP_HOST} !^example\.com$ [NC]RewriteRule .? 阅读全文
posted @ 2012-07-30 14:44 phpbin 阅读(129) 评论(0) 推荐(0) 编辑
摘要: mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication 阅读全文
posted @ 2012-07-30 14:12 phpbin 阅读(455) 评论(0) 推荐(0) 编辑