This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
W3C 在 w3.org 上不提供此功能。
http://validator.w3.org/docs/help.html#faq-batchvalidation
但您可以使用此工具并选中“验证整个网站”:(w3.org 也指此网站!)
但你有一个限制100 个 URL 进行验证,当您达到 100 个 URL 时,将会收到此消息:
批量验证一次只能验证 100 个 URL。其余网址未进行检查。
此外,每个网址还有显示错误数限制。
The W3C doesn't offer this on w3.org.
http://validator.w3.org/docs/help.html#faq-batchvalidation
But you can use this tool and check "Validate entire site": (Also w3.org refers to this site!)
But you have a limit of 100 URLs to validate and will get this message when you reach 100 URLs:
Batch validation is limited to 100 URLs at one time. The remaining URLs were not checked.
Also there's a limit of errors displayed for each url.
WDG 提供两种免费解决方案:
The WDG offers two free solutions:
您可以自己运行验证器。截至 2018 年,W3C 正在使用 v.Nu 作为其验证器,代码位于 https:// github.com/validator/validator/releases/latest 和使用说明位于 https://validator.github.io/validator/#usage
例如,以下命令将在
public_html
html 文件上运行它> 目录:You can run the validator yourself. As of 2018, W3C are using v.Nu for their validator, the code is at https://github.com/validator/validator/releases/latest and usage instructions are at https://validator.github.io/validator/#usage
For example, the following command will run it on all
html
files under thepublic_html
directory:我使用这个工具批量 w3c html 验证器来验证我的整个网站
http://www.bulkseotools。 com/bulk-w3c-validator.php
该工具使用W3c验证器引擎,您可以一次检查500个网址。
I use this tool bulk w3c html validator to validate my entire website
http://www.bulkseotools.com/bulk-w3c-validator.php
This tool uses W3c validator engine, you can check 500 urls at once.
我使用过 http://sitevalidator.com;我想这对你会有帮助。
I've used http://sitevalidator.com; I think it would be helpful to you.
我在业余时间制作了这个java应用程序(Windows安装程序),因为我在工作中需要它:
https://gsoft.no/validator。它是免费的。
它使用 https://validator.w3.org/ 或本地运行的 v.Nu 来验证整个地点。
它会抓取一个网站,最后生成一份报告,其中包含指向所有带有警告或错误的页面的验证器链接。因为它是爬行的,所以所有要验证的页面都必须链接。
通过在本地运行 v.Nu,您可以验证内部站点(例如内部网),该站点无法在线访问,因此无法通过在线验证器进行验证(除非您发布每个页面的全部内容)。
I made this java app (Windows installer) in my spare time because I needed it at work:
https://gsoft.no/validator. It's free.
It uses either https://validator.w3.org/ or v.Nu running locally to validate an entire site.
It crawls a website and in the end makes a report with validator-links to all pages with warnings or errors. Because it crawls, all pages to be validated must be linked.
By running v.Nu locally you can validate an internal site (e.g. an intranet) which is not available online and therefore cannot be validated by online validators (unless you post the entire content of each page).