您好,欢迎光临! 推荐您使用Chrome浏览器访问本站。

woWrdPress 插件:SEO Smart Links内链自动化

963 views
woWrdPress 插件:SEO Smart Links内链自动化内部链接的添加对SEO有很大的作用,所以有很多擅长SEO的站长很注意内部链接的建设,但是当我们WordPress里文章数很多的时候,添加相关关键词的内部链接就不是一件容易的事情啦!我们希望有一个WordPress插件可以根据文章中的关键词,自动关联以前发布的文章,并且以关键词为锚文本添加内部链接。SEO Smart Links插件就可以帮我们完成这个功能。 主要特点: 1)完全自动添加内部链接 2)可以限定每篇文章自动添加的内链数目 3)自定义搜索关键词和链接地址 4)可以设定能够忽略的关键词 5)设定链接打开方式和nofollow属性 SEO Smart......

开启WordPress内置gzip功能

903 views
开启WordPress内置gzip功能开启wordpress 内置gzip功能: 编辑wordpress根目录下的index.php文件,在其中找到代码: define('WP_USE_THEMES', true); 在其后插入以下代码: <pre>//判断浏览器是否支持Gizp if(ereg('gzip',$_SERVER['HTTP_ACCEPT_ENCODING'])){ //排除不需要Gzip压缩的目录 if(substr($_SERVER['REQUEST_URI'],0,10)!='/upload/') //打开Gzip压缩 ob_start('ob_gzhandler');} 该压缩仅能压缩页面,对于其中的js或css无法压缩。 另外网上有很多相关插件,如GZippy等。

Apache gzip

986 views
Apache gzipgzip可以极大的加速网站。关于gzip的具体介绍可参看:gzip-百度百科 。 下面只介绍在WAMP环境下如何开启apache的gzip。 方法如下: 1. httpd.conf中打开deflate_Module和headers_Module模块 2. httpd.conf中添加: <IfModule deflate_module>     SetOutputFilter DEFLATE     # Don’t compress images and other     SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary     SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary     SetEnvIfNoCase Request_URI .(?:pdf|doc)......

外网访问XAMPP phpMyAdmin失败 解决方法

2,833 views
外网访问XAMPP phpMyAdmin失败 解决方法 外网访问XAMPP出现如下错误: New XAMPP security concept: Access to the requested directory is only available from the local network. This setting can be configured in the file “httpd-xampp.conf”. 解决办法: 打开httpd-xampp.conf(/xampp/apache/conf/extra/httpd-xampp.conf) 找到以下内容 <LocationMatch “^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))”> Order deny,allow Deny from all Allow from ::1 127.0.0.0/8 \ fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.......

xampp apache terminating worker thread 0

1,693 views
xampp apache terminating worker thread 0可能的情况1:端口被占用 运行cmd -> netstat -ano, 查看端口是否被占用,若被占用将占用端口的程序关闭。 或修改xampp中apache的默认端口: 打开xampp\apache\conf\httpd.conf文件把80修改为8081; 附修改SSL端口: 打开xampp\apache\conf\extra\httpd-ssl.conf文件把443修改为4433或者关闭SSL扩展 可能的情况2:缺少Microsoft Visual C++ 2008 Runtime组件 系统缺少Microsoft Visual C++ 2008 Runtime这个组件,安装Microsoft Visual C++ 2008 Redistributable Package即可解决。 下载地址:http://www.microsoft.com/downloa......