只显示主题贴
apache/bin/ab是比较好用,但是只能跟踪一个网页,不能整站跟踪;
Xenu是好用,但是看不到来源网页request.getHeader("Referer");
除了apache/bin/ab可以跟踪网站的性能,
还有什么比较好的工具可以跟踪网站的情况:
如:更好的测试出网站的整体压力;
如:更好的分析网页的关键词,做出更好的SEO网页;
如:更好的分析网站的404,501等错误!
望各位大哥能给出一些您前常用的SEO工具,谢谢!
- 进入论坛 Java 版
/**
* @see javax.servlet.ServletRequestWrapper#getRemoteAddr()
*/
public String getRemoteAddr()
{
// We look if the request is forwarded
// If it is not call the older function.
String ip = super.getHeader("x-forwarded-for");
if (ip == null) {
ip = super.g ...
- 进入论坛 Java 版
请问实现二级或多级域名的个性有多少种方法的?是在j2ee上实现的!!
如:
提供个性化的域名<如:angel.blogurl.cn>
简化原有博客地址<如:http://blog.sina.com.cn/u/1234567803377 变成:http://angel.blogurl.cn>
更换博客不换域名<如:从新浪博客改为搜狐博客,博客地址变了,域名不变http://angel.blogurl.cn>
便于博客的传播<简单的博客名字容易让人记住>
提供隐藏转向<隐藏您的博客地址,对外展示个性域名http://ang ...
- 进入论坛 入门讨论 版
为什么我在print on server下显示不了server端的printer的?
就像http://www.karlshamn.se:8100/appl/frameset?__report=test.rptdesign&sample=my+parameter
打印在服务器端时显示不了打印机名称?如何设置?
- 进入论坛 Java 版







评论排行榜