URL を解析から除外する

This page is not available in the language you requested. You have been redirected to the English version of the page.
Link to this page copied to clipboard
Not for use with personal data

Watcher を使うと、

exclude API を使用すると、配列内のあらゆるパターンに一致する URL が分析されないようにできます。

JavaScript または TypeScript の例

axe: {
  excludeUrlPatterns: [ 'https://*.example.com/**', 'https://example.org/**' ]
}

Java の例

AxeWatcherOptions options = new AxeWatcherOptions();
// Exclude login pages and admin dashboard
options.setExcludeUrlPatterns(new String[] {
    "https://example.com/login*",
    "https://example.com/admin/*"
});

URL 除外の例

URL パターン 除外された?
https://example.com/index.html example.com
https://example.com/index.html https://*mple.com/index.html
https://example.com/index.html https://example.com
https://example.com/index.html https://*.example.com
https://example.com/index.html https://*.example.com/**
https://example.com/index.html https://*example.com/**
https://example.com/index.html https://**
https://example.com/index.html https://*
https://example.com/index.html **
https://example.com/index.html *example.com/index.html
https://example.com/index.html *example.com/**
https://example.com/index.html */example.com/**
https://example.com/index.html htt*/**
https://example.com/index.html h*/example.com/**
https://test.example.com/index.html https://*example.com/**
https://test.example.com/index.html https://*.example.com/**