最重要的可用性、可访问性和 SEO 指南是什么?
谁能告诉我一些最重要的可用性、可访问性和 SEO 指南,在开发一个好的 Web2.0 网站时必须考虑这些指南???
Can anyone tell me some of the most important usability, accessibility and SEO guidelines, which must be taken into considerations while developing a good Web2.0 website ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://www.w3.org/WAI/
http://www.section508.gov/index.cfm?FuseAction=content&ID=12#Web< /a>
http://www.google.com/support/webmasters/bin/topic.py?topic=8522< /a>
不要太执着于“Web 2.0”这个流行词。 可访问性标准已经存在很长时间了,并且是任何网站的重要组成部分。
http://www.w3.org/WAI/
http://www.section508.gov/index.cfm?FuseAction=content&ID=12#Web
http://www.google.com/support/webmasters/bin/topic.py?topic=8522
Don't get too hung up on the "Web 2.0" buzzword. Accessibility standards have been around for a long time and are an important part of any web site.
SEO 提示:重写动态 URL,以便即使实际 URL 可能是动态的,但它看起来也是静态的。 这允许蜘蛛完全索引您的网站。
在 Apache 上,您可以使用 mod_rewrite 来完成此操作,并且 IIS 也有类似的技术。
示例:
而不是
http://yourdomain.com/cgi-bin/getproduct。 pl?id=12345
使用类似
http://yourdomain.com/products/12345
作为替代方案(或针对无法重写的动态 URL 的附加措施),您应该创建站点地图。
SEO hint: Rewrite your dynamic URLs so that even the actual URL may be dynamic, it appears static. This allows spiders to fully index your site.
On Apache, you can do this by using mod_rewrite and there are symilar techniques for IIS.
Example:
Instead of
http://yourdomain.com/cgi-bin/getproduct.pl?id=12345
use something like
http://yourdomain.com/products/12345
As an alternative (or additional measure for those dynamic URLs you cannot rewrite), you should create a site map.
顺便说一句,最近有一篇关于它的文章 。
其他好的可用性文章:
虽然我不喜欢文章标题的“恐怖”语气,但文章本身很好的做法。
Incidentally, there was a recent article on it.
Other good Usability articles:
While I dislike the 'horror' tone of the article headlines, the articles themselves are good practice.