-
Notifications
You must be signed in to change notification settings - Fork 15
/
.htaccess
4038 lines (4038 loc) · 543 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
RedirectMatch "^(/ansible/[^/]+)/plugins/become/doas.html" "$1/collections/community/general/doas_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/dzdo.html" "$1/collections/community/general/dzdo_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/enable.html" "$1/collections/ansible/netcommon/enable_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/ksu.html" "$1/collections/community/general/ksu_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/machinectl.html" "$1/collections/community/general/machinectl_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/pbrun.html" "$1/collections/community/general/pbrun_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/pfexec.html" "$1/collections/community/general/pfexec_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/pmrun.html" "$1/collections/community/general/pmrun_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/runas.html" "$1/collections/ansible/builtin/runas_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/sesu.html" "$1/collections/community/general/sesu_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/su.html" "$1/collections/ansible/builtin/su_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/become/sudo.html" "$1/collections/ansible/builtin/sudo_become.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/base.html" "$1/collections/ansible/builtin/base_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/jsonfile.html" "$1/collections/ansible/builtin/jsonfile_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/memcached.html" "$1/collections/community/general/memcached_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/memory.html" "$1/collections/ansible/builtin/memory_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/mongodb.html" "$1/collections/community/mongodb/mongodb_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/pickle.html" "$1/collections/community/general/pickle_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/redis.html" "$1/collections/community/general/redis_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cache/yaml.html" "$1/collections/community/general/yaml_cache.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/actionable.html" "$1/collections/community/general/actionable_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/aws_resource_actions.html" "$1/collections/amazon/aws/aws_resource_actions_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/cgroup_memory_recap.html" "$1/collections/community/general/cgroup_memory_recap_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/cgroup_perf_recap.html" "$1/collections/ansible/posix/cgroup_perf_recap_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/context_demo.html" "$1/collections/community/general/context_demo_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/counter_enabled.html" "$1/collections/community/general/counter_enabled_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/debug.html" "$1/collections/ansible/posix/debug_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/default.html" "$1/collections/ansible/builtin/default_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/dense.html" "$1/collections/community/general/dense_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/foreman.html" "$1/collections/theforeman/foreman/foreman_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/full_skip.html" "$1/collections/community/general/full_skip_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/grafana_annotations.html" "$1/collections/community/grafana/grafana_annotations_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/hipchat.html" "$1/collections/community/general/hipchat_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/jabber.html" "$1/collections/community/general/jabber_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/json.html" "$1/collections/ansible/posix/json_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/junit.html" "$1/collections/ansible/builtin/junit_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/log_plays.html" "$1/collections/community/general/log_plays_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/logdna.html" "$1/collections/community/general/logdna_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/logentries.html" "$1/collections/community/general/logentries_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/logstash.html" "$1/collections/community/general/logstash_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/mail.html" "$1/collections/community/general/mail_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/minimal.html" "$1/collections/ansible/builtin/minimal_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/nrdp.html" "$1/collections/community/general/nrdp_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/null.html" "$1/collections/community/general/null_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/oneline.html" "$1/collections/ansible/builtin/oneline_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/osx_say.html" "$1/collections/community/general/osx_say_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/profile_roles.html" "$1/collections/ansible/posix/profile_roles_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/profile_tasks.html" "$1/collections/ansible/posix/profile_tasks_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/say.html" "$1/collections/community/general/say_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/selective.html" "$1/collections/community/general/selective_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/skippy.html" "$1/collections/ansible/posix/skippy_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/slack.html" "$1/collections/community/general/slack_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/splunk.html" "$1/collections/community/general/splunk_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/stderr.html" "$1/collections/community/general/stderr_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/sumologic.html" "$1/collections/community/general/sumologic_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/syslog_json.html" "$1/collections/community/general/syslog_json_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/timer.html" "$1/collections/ansible/posix/timer_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/tree.html" "$1/collections/ansible/builtin/tree_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/unixy.html" "$1/collections/community/general/unixy_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/callback/yaml.html" "$1/collections/community/general/yaml_callback.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/aireos.html" "$1/collections/community/network/aireos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/apconos.html" "$1/collections/community/network/apconos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/aruba.html" "$1/collections/community/network/aruba_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/asa.html" "$1/collections/cisco/asa/asa_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/ce.html" "$1/collections/community/network/ce_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/cnos.html" "$1/collections/community/network/cnos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/dellos10.html" "$1/collections/dellemc/os10/os10_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/dellos6.html" "$1/collections/dellemc/os6/os6_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/dellos9.html" "$1/collections/dellemc/os9/os9_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/edgeos.html" "$1/collections/community/network/edgeos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/edgeswitch.html" "$1/collections/community/network/edgeswitch_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/enos.html" "$1/collections/community/network/enos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/eos.html" "$1/collections/arista/eos/eos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/eric_eccli.html" "$1/collections/community/network/eric_eccli_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/exos.html" "$1/collections/community/network/exos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/frr.html" "$1/collections/frr/frr/frr_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/icx.html" "$1/collections/community/network/icx_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/ios.html" "$1/collections/cisco/ios/ios_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/iosxr.html" "$1/collections/cisco/iosxr/iosxr_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/ironware.html" "$1/collections/community/network/ironware_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/junos.html" "$1/collections/junipernetworks/junos/junos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/netvisor.html" "$1/collections/community/network/netvisor_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/nos.html" "$1/collections/community/network/nos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/nxos.html" "$1/collections/cisco/nxos/nxos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/onyx.html" "$1/collections/mellanox/onyx/onyx_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/routeros.html" "$1/collections/community/network/routeros_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/slxos.html" "$1/collections/community/network/slxos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/voss.html" "$1/collections/community/network/voss_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/cliconf/vyos.html" "$1/collections/vyos/vyos/vyos_cliconf.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/aws_ssm.html" "$1/collections/community/aws/aws_ssm_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/buildah.html" "$1/collections/containers/podman/buildah_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/chroot.html" "$1/collections/community/general/chroot_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/docker.html" "$1/collections/community/general/docker_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/funcd.html" "$1/collections/community/general/funcd_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/httpapi.html" "$1/collections/ansible/netcommon/httpapi_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/iocage.html" "$1/collections/community/general/iocage_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/jail.html" "$1/collections/community/general/jail_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/kubectl.html" "$1/collections/community/kubernetes/kubectl_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/libvirt_lxc.html" "$1/collections/community/libvirt/libvirt_lxc_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/local.html" "$1/collections/ansible/builtin/local_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/lxc.html" "$1/collections/community/general/lxc_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/lxd.html" "$1/collections/community/general/lxd_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/napalm.html" "$1/collections/ansible/netcommon/napalm_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/netconf.html" "$1/collections/ansible/netcommon/netconf_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/network_cli.html" "$1/collections/ansible/netcommon/network_cli_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/oc.html" "$1/collections/community/general/oc_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/paramiko_ssh.html" "$1/collections/ansible/builtin/paramiko_ssh_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/persistent.html" "$1/collections/ansible/netcommon/persistent_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/podman.html" "$1/collections/containers/podman/podman_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/psrp.html" "$1/collections/ansible/builtin/psrp_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/qubes.html" "$1/collections/community/general/qubes_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/redirected_local.html" "$1/collections/ansible/builtin/local_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/saltstack.html" "$1/collections/community/general/saltstack_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/ssh.html" "$1/collections/ansible/builtin/ssh_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/vmware_tools.html" "$1/collections/community/vmware/vmware_tools_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/winrm.html" "$1/collections/ansible/builtin/winrm_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/connection/zone.html" "$1/collections/community/general/zone_connection.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/checkpoint.html" "$1/collections/check_point/mgmt/checkpoint_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/eos.html" "$1/collections/arista/eos/eos_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/exos.html" "$1/collections/community/network/exos_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/fortianalyzer.html" "$1/collections/community/network/fortianalyzer_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/fortimanager.html" "$1/collections/fortinet/fortimanager/fortimanager_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/fortios.html" "$1/collections/fortinet/fortios/fortios_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/ftd.html" "$1/collections/community/network/ftd_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/nxos.html" "$1/collections/cisco/nxos/nxos_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/qradar.html" "$1/collections/ibm/qradar/qradar_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/restconf.html" "$1/collections/ansible/netcommon/restconf_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/splunk.html" "$1/collections/splunk/es/splunk_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/httpapi/vmware.html" "$1/collections/community/vmware/vmware_httpapi.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/advanced_host_list.html" "$1/collections/ansible/builtin/advanced_host_list_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/auto.html" "$1/collections/ansible/builtin/auto_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/aws_ec2.html" "$1/collections/amazon/aws/aws_ec2_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/aws_rds.html" "$1/collections/amazon/aws/aws_rds_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/azure_rm.html" "$1/collections/azure/azcollection/azure_rm_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/cloudscale.html" "$1/collections/cloudscale_ch/cloud/inventory_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/constructed.html" "$1/collections/ansible/builtin/constructed_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/docker_machine.html" "$1/collections/community/general/docker_machine_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/docker_swarm.html" "$1/collections/community/general/docker_swarm_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/foreman.html" "$1/collections/theforeman/foreman/foreman_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/gcp_compute.html" "$1/collections/google/cloud/gcp_compute_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/generator.html" "$1/collections/ansible/builtin/generator_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/gitlab_runners.html" "$1/collections/community/general/gitlab_runners_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/hcloud.html" "$1/collections/hetzner/hcloud/hcloud_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/host_list.html" "$1/collections/ansible/builtin/host_list_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/ini.html" "$1/collections/ansible/builtin/ini_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/k8s.html" "$1/collections/community/kubernetes/k8s_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/kubevirt.html" "$1/collections/community/general/kubevirt_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/linode.html" "$1/collections/community/general/linode_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/netbox.html" "$1/collections/netbox/netbox/nb_inventory_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/nmap.html" "$1/collections/community/general/nmap_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/online.html" "$1/collections/community/general/online_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/openshift.html" "$1/collections/community/kubernetes/openshift_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/openstack.html" "$1/collections/openstack/cloud/openstack_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/scaleway.html" "$1/collections/community/general/scaleway_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/script.html" "$1/collections/ansible/builtin/script_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/toml.html" "$1/collections/ansible/builtin/toml_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/tower.html" "$1/collections/awx/awx/tower_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/virtualbox.html" "$1/collections/community/general/virtualbox_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/vmware_vm_inventory.html" "$1/collections/community/vmware/vmware_vm_inventory_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/vultr.html" "$1/collections/ngine_io/vultr/vultr_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/inventory/yaml.html" "$1/collections/ansible/builtin/yaml_inventory.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/avi.html" "$1/collections/community/network/avi_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/aws_account_attribute.html" "$1/collections/amazon/aws/aws_account_attribute_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/aws_secret.html" "$1/collections/amazon/aws/aws_secret_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/aws_service_ip_ranges.html" "$1/collections/amazon/aws/aws_service_ip_ranges_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/aws_ssm.html" "$1/collections/amazon/aws/aws_ssm_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/cartesian.html" "$1/collections/community/general/cartesian_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/chef_databag.html" "$1/collections/community/general/chef_databag_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/config.html" "$1/collections/ansible/builtin/config_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/conjur_variable.html" "$1/collections/cyberark/conjur/conjur_variable_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/consul_kv.html" "$1/collections/community/general/consul_kv_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/cpm_metering.html" "$1/collections/wti/remote/cpm_metering_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/cpm_status.html" "$1/collections/wti/remote/cpm_status_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/credstash.html" "$1/collections/community/general/credstash_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/csvfile.html" "$1/collections/ansible/builtin/csvfile_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/cyberarkpassword.html" "$1/collections/community/general/cyberarkpassword_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/dict.html" "$1/collections/ansible/builtin/dict_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/dig.html" "$1/collections/community/general/dig_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/dnstxt.html" "$1/collections/community/general/dnstxt_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/env.html" "$1/collections/ansible/builtin/env_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/etcd.html" "$1/collections/community/general/etcd_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/file.html" "$1/collections/ansible/builtin/file_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/fileglob.html" "$1/collections/ansible/builtin/fileglob_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/filetree.html" "$1/collections/community/general/filetree_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/first_found.html" "$1/collections/ansible/builtin/first_found_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/flattened.html" "$1/collections/community/general/flattened_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/gcp_storage_file.html" "$1/collections/community/general/gcp_storage_file_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/grafana_dashboard.html" "$1/collections/community/grafana/grafana_dashboard_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/hashi_vault.html" "$1/collections/community/general/hashi_vault_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/hiera.html" "$1/collections/community/general/hiera_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/indexed_items.html" "$1/collections/ansible/builtin/indexed_items_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/ini.html" "$1/collections/ansible/builtin/ini_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/inventory_hostnames.html" "$1/collections/ansible/builtin/inventory_hostnames_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/items.html" "$1/collections/ansible/builtin/items_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/k8s.html" "$1/collections/community/kubernetes/k8s_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/keyring.html" "$1/collections/community/general/keyring_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/laps_password.html" "$1/collections/community/windows/laps_password_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/lastpass.html" "$1/collections/community/general/lastpass_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/lines.html" "$1/collections/ansible/builtin/lines_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/list.html" "$1/collections/ansible/builtin/list_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/lmdb_kv.html" "$1/collections/community/general/lmdb_kv_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/manifold.html" "$1/collections/community/general/manifold_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/mongodb.html" "$1/collections/community/mongodb/mongodb_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/nested.html" "$1/collections/ansible/builtin/nested_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/nios.html" "$1/collections/community/general/nios_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/nios_next_ip.html" "$1/collections/community/general/nios_next_ip_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/nios_next_network.html" "$1/collections/community/general/nios_next_network_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/onepassword.html" "$1/collections/community/general/onepassword_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/onepassword_raw.html" "$1/collections/community/general/onepassword_raw_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/password.html" "$1/collections/ansible/builtin/password_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/passwordstore.html" "$1/collections/community/general/passwordstore_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/pipe.html" "$1/collections/ansible/builtin/pipe_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/rabbitmq.html" "$1/collections/community/rabbitmq/rabbitmq_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/random_choice.html" "$1/collections/ansible/builtin/random_choice_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/redis.html" "$1/collections/community/general/redis_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/sequence.html" "$1/collections/ansible/builtin/sequence_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/shelvefile.html" "$1/collections/community/general/shelvefile_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/skydive.html" "$1/collections/community/skydive/skydive_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/subelements.html" "$1/collections/ansible/builtin/subelements_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/template.html" "$1/collections/ansible/builtin/template_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/together.html" "$1/collections/ansible/builtin/together_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/unvault.html" "$1/collections/ansible/builtin/unvault_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/url.html" "$1/collections/ansible/builtin/url_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/varnames.html" "$1/collections/ansible/builtin/varnames_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/plugins/lookup/vars.html" "$1/collections/ansible/builtin/vars_lookup.html"
RedirectMatch "^(/ansible/[^/]+)/modules/a10_server_module.html" "$1/collections/community/network/a10_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/a10_server_axapi3_module.html" "$1/collections/community/network/a10_server_axapi3_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/a10_service_group_module.html" "$1/collections/community/network/a10_service_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/a10_virtual_server_module.html" "$1/collections/community/network/a10_virtual_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_aaa_user_module.html" "$1/collections/cisco/aci/aci_aaa_user_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_aaa_user_certificate_module.html" "$1/collections/cisco/aci/aci_aaa_user_certificate_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_access_port_block_to_access_port_module.html" "$1/collections/cisco/aci/aci_access_port_block_to_access_port_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_access_port_to_interface_policy_leaf_profile_module.html" "$1/collections/cisco/aci/aci_access_port_to_interface_policy_leaf_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_access_sub_port_block_to_access_port_module.html" "$1/collections/cisco/aci/aci_access_sub_port_block_to_access_port_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_aep_module.html" "$1/collections/cisco/aci/aci_aep_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_aep_to_domain_module.html" "$1/collections/cisco/aci/aci_aep_to_domain_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_ap_module.html" "$1/collections/cisco/aci/aci_ap_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_bd_module.html" "$1/collections/cisco/aci/aci_bd_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_bd_subnet_module.html" "$1/collections/cisco/aci/aci_bd_subnet_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_bd_to_l3out_module.html" "$1/collections/cisco/aci/aci_bd_to_l3out_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_config_rollback_module.html" "$1/collections/cisco/aci/aci_config_rollback_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_config_snapshot_module.html" "$1/collections/cisco/aci/aci_config_snapshot_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_contract_module.html" "$1/collections/cisco/aci/aci_contract_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_contract_subject_module.html" "$1/collections/cisco/aci/aci_contract_subject_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_contract_subject_to_filter_module.html" "$1/collections/cisco/aci/aci_contract_subject_to_filter_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_domain_module.html" "$1/collections/cisco/aci/aci_domain_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_domain_to_encap_pool_module.html" "$1/collections/cisco/aci/aci_domain_to_encap_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_domain_to_vlan_pool_module.html" "$1/collections/cisco/aci/aci_domain_to_vlan_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_encap_pool_module.html" "$1/collections/cisco/aci/aci_encap_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_encap_pool_range_module.html" "$1/collections/cisco/aci/aci_encap_pool_range_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_epg_module.html" "$1/collections/cisco/aci/aci_epg_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_epg_monitoring_policy_module.html" "$1/collections/cisco/aci/aci_epg_monitoring_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_epg_to_contract_module.html" "$1/collections/cisco/aci/aci_epg_to_contract_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_epg_to_domain_module.html" "$1/collections/cisco/aci/aci_epg_to_domain_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_fabric_node_module.html" "$1/collections/cisco/aci/aci_fabric_node_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_fabric_scheduler_module.html" "$1/collections/cisco/aci/aci_fabric_scheduler_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_filter_module.html" "$1/collections/cisco/aci/aci_filter_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_filter_entry_module.html" "$1/collections/cisco/aci/aci_filter_entry_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_firmware_group_module.html" "$1/collections/cisco/aci/aci_firmware_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_firmware_group_node_module.html" "$1/collections/cisco/aci/aci_firmware_group_node_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_firmware_policy_module.html" "$1/collections/cisco/aci/aci_firmware_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_firmware_source_module.html" "$1/collections/cisco/aci/aci_firmware_source_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_cdp_module.html" "$1/collections/cisco/aci/aci_interface_policy_cdp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_fc_module.html" "$1/collections/cisco/aci/aci_interface_policy_fc_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_l2_module.html" "$1/collections/cisco/aci/aci_interface_policy_l2_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_leaf_policy_group_module.html" "$1/collections/cisco/aci/aci_interface_policy_leaf_policy_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_leaf_profile_module.html" "$1/collections/cisco/aci/aci_interface_policy_leaf_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_lldp_module.html" "$1/collections/cisco/aci/aci_interface_policy_lldp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_mcp_module.html" "$1/collections/cisco/aci/aci_interface_policy_mcp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_ospf_module.html" "$1/collections/cisco/aci/aci_interface_policy_ospf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_port_channel_module.html" "$1/collections/cisco/aci/aci_interface_policy_port_channel_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_policy_port_security_module.html" "$1/collections/cisco/aci/aci_interface_policy_port_security_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_interface_selector_to_switch_policy_leaf_profile_module.html" "$1/collections/cisco/aci/aci_interface_selector_to_switch_policy_leaf_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_intf_policy_fc_module.html" "$1/collections/cisco/aci/aci_interface_policy_fc_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_intf_policy_l2_module.html" "$1/collections/cisco/aci/aci_interface_policy_l2_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_intf_policy_lldp_module.html" "$1/collections/cisco/aci/aci_interface_policy_lldp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_intf_policy_mcp_module.html" "$1/collections/cisco/aci/aci_interface_policy_mcp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_intf_policy_port_channel_module.html" "$1/collections/cisco/aci/aci_interface_policy_port_channel_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_intf_policy_port_security_module.html" "$1/collections/cisco/aci/aci_interface_policy_port_security_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_l3out_module.html" "$1/collections/cisco/aci/aci_l3out_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_l3out_extepg_module.html" "$1/collections/cisco/aci/aci_l3out_extepg_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_l3out_extsubnet_module.html" "$1/collections/cisco/aci/aci_l3out_extsubnet_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_l3out_route_tag_policy_module.html" "$1/collections/cisco/aci/aci_l3out_route_tag_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_maintenance_group_module.html" "$1/collections/cisco/aci/aci_maintenance_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_maintenance_group_node_module.html" "$1/collections/cisco/aci/aci_maintenance_group_node_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_maintenance_policy_module.html" "$1/collections/cisco/aci/aci_maintenance_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_rest_module.html" "$1/collections/cisco/aci/aci_rest_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_static_binding_to_epg_module.html" "$1/collections/cisco/aci/aci_static_binding_to_epg_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_switch_leaf_selector_module.html" "$1/collections/cisco/aci/aci_switch_leaf_selector_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_switch_policy_leaf_profile_module.html" "$1/collections/cisco/aci/aci_switch_policy_leaf_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_switch_policy_vpc_protection_group_module.html" "$1/collections/cisco/aci/aci_switch_policy_vpc_protection_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_taboo_contract_module.html" "$1/collections/cisco/aci/aci_taboo_contract_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_tenant_module.html" "$1/collections/cisco/aci/aci_tenant_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_tenant_action_rule_profile_module.html" "$1/collections/cisco/aci/aci_tenant_action_rule_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_tenant_ep_retention_policy_module.html" "$1/collections/cisco/aci/aci_tenant_ep_retention_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_tenant_span_dst_group_module.html" "$1/collections/cisco/aci/aci_tenant_span_dst_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_tenant_span_src_group_module.html" "$1/collections/cisco/aci/aci_tenant_span_src_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_tenant_span_src_group_to_dst_group_module.html" "$1/collections/cisco/aci/aci_tenant_span_src_group_to_dst_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_vlan_pool_module.html" "$1/collections/cisco/aci/aci_vlan_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_vlan_pool_encap_block_module.html" "$1/collections/cisco/aci/aci_vlan_pool_encap_block_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_vmm_credential_module.html" "$1/collections/cisco/aci/aci_vmm_credential_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aci_vrf_module.html" "$1/collections/cisco/aci/aci_vrf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acl_module.html" "$1/collections/ansible/posix/acl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_account_module.html" "$1/collections/community/crypto/acme_account_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_account_facts_module.html" "$1/collections/community/crypto/acme_account_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_account_info_module.html" "$1/collections/community/crypto/acme_account_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_certificate_module.html" "$1/collections/community/crypto/acme_certificate_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_certificate_revoke_module.html" "$1/collections/community/crypto/acme_certificate_revoke_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_challenge_cert_helper_module.html" "$1/collections/community/crypto/acme_challenge_cert_helper_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/acme_inspect_module.html" "$1/collections/community/crypto/acme_inspect_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/add_host_module.html" "$1/collections/ansible/builtin/add_host_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aerospike_migrations_module.html" "$1/collections/community/general/aerospike_migrations_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/airbrake_deployment_module.html" "$1/collections/community/general/airbrake_deployment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aireos_command_module.html" "$1/collections/community/network/aireos_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aireos_config_module.html" "$1/collections/community/network/aireos_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aix_devices_module.html" "$1/collections/community/general/aix_devices_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aix_filesystem_module.html" "$1/collections/community/general/aix_filesystem_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aix_inittab_module.html" "$1/collections/community/general/aix_inittab_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aix_lvg_module.html" "$1/collections/community/general/aix_lvg_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aix_lvol_module.html" "$1/collections/community/general/aix_lvol_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ali_instance_module.html" "$1/collections/community/general/ali_instance_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ali_instance_facts_module.html" "$1/collections/community/general/ali_instance_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ali_instance_info_module.html" "$1/collections/community/general/ali_instance_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/alternatives_module.html" "$1/collections/community/general/alternatives_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apache2_mod_proxy_module.html" "$1/collections/community/general/apache2_mod_proxy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apache2_module_module.html" "$1/collections/community/general/apache2_module_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apconos_command_module.html" "$1/collections/community/network/apconos_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apk_module.html" "$1/collections/community/general/apk_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apt_module.html" "$1/collections/ansible/builtin/apt_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apt_key_module.html" "$1/collections/ansible/builtin/apt_key_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apt_repo_module.html" "$1/collections/community/general/apt_repo_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apt_repository_module.html" "$1/collections/ansible/builtin/apt_repository_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/apt_rpm_module.html" "$1/collections/community/general/apt_rpm_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/archive_module.html" "$1/collections/community/general/archive_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aruba_command_module.html" "$1/collections/community/network/aruba_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aruba_config_module.html" "$1/collections/community/network/aruba_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/asa_acl_module.html" "$1/collections/cisco/asa/asa_acl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/asa_command_module.html" "$1/collections/cisco/asa/asa_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/asa_config_module.html" "$1/collections/cisco/asa/asa_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/asa_og_module.html" "$1/collections/cisco/asa/asa_og_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/assemble_module.html" "$1/collections/ansible/builtin/assemble_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/assert_module.html" "$1/collections/ansible/builtin/assert_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/async_status_module.html" "$1/collections/ansible/builtin/async_status_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/async_status.ps1_module.html" "$1/collections/ansible/windows/async_status_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/async_wrapper_module.html" "$1/collections/ansible/builtin/async_wrapper_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/at_module.html" "$1/collections/ansible/posix/at_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/atomic_container_module.html" "$1/collections/community/general/atomic_container_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/atomic_host_module.html" "$1/collections/community/general/atomic_host_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/atomic_image_module.html" "$1/collections/community/general/atomic_image_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/authorized_key_module.html" "$1/collections/ansible/posix/authorized_key_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_actiongroupconfig_module.html" "$1/collections/community/network/avi_actiongroupconfig_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_alertconfig_module.html" "$1/collections/community/network/avi_alertconfig_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_alertemailconfig_module.html" "$1/collections/community/network/avi_alertemailconfig_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_alertscriptconfig_module.html" "$1/collections/community/network/avi_alertscriptconfig_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_alertsyslogconfig_module.html" "$1/collections/community/network/avi_alertsyslogconfig_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_analyticsprofile_module.html" "$1/collections/community/network/avi_analyticsprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_api_session_module.html" "$1/collections/community/network/avi_api_session_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_api_version_module.html" "$1/collections/community/network/avi_api_version_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_applicationpersistenceprofile_module.html" "$1/collections/community/network/avi_applicationpersistenceprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_applicationprofile_module.html" "$1/collections/community/network/avi_applicationprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_authprofile_module.html" "$1/collections/community/network/avi_authprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_autoscalelaunchconfig_module.html" "$1/collections/community/network/avi_autoscalelaunchconfig_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_backup_module.html" "$1/collections/community/network/avi_backup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_backupconfiguration_module.html" "$1/collections/community/network/avi_backupconfiguration_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_certificatemanagementprofile_module.html" "$1/collections/community/network/avi_certificatemanagementprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_cloud_module.html" "$1/collections/community/network/avi_cloud_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_cloudconnectoruser_module.html" "$1/collections/community/network/avi_cloudconnectoruser_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_cloudproperties_module.html" "$1/collections/community/network/avi_cloudproperties_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_cluster_module.html" "$1/collections/community/network/avi_cluster_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_clusterclouddetails_module.html" "$1/collections/community/network/avi_clusterclouddetails_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_controllerproperties_module.html" "$1/collections/community/network/avi_controllerproperties_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_customipamdnsprofile_module.html" "$1/collections/community/network/avi_customipamdnsprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_dnspolicy_module.html" "$1/collections/community/network/avi_dnspolicy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_errorpagebody_module.html" "$1/collections/community/network/avi_errorpagebody_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_errorpageprofile_module.html" "$1/collections/community/network/avi_errorpageprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_gslb_module.html" "$1/collections/community/network/avi_gslb_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_gslbgeodbprofile_module.html" "$1/collections/community/network/avi_gslbgeodbprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_gslbservice_module.html" "$1/collections/community/network/avi_gslbservice_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_gslbservice_patch_member_module.html" "$1/collections/community/network/avi_gslbservice_patch_member_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_hardwaresecuritymodulegroup_module.html" "$1/collections/community/network/avi_hardwaresecuritymodulegroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_healthmonitor_module.html" "$1/collections/community/network/avi_healthmonitor_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_httppolicyset_module.html" "$1/collections/community/network/avi_httppolicyset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_ipaddrgroup_module.html" "$1/collections/community/network/avi_ipaddrgroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_ipamdnsproviderprofile_module.html" "$1/collections/community/network/avi_ipamdnsproviderprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_l4policyset_module.html" "$1/collections/community/network/avi_l4policyset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_microservicegroup_module.html" "$1/collections/community/network/avi_microservicegroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_network_module.html" "$1/collections/community/network/avi_network_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_networkprofile_module.html" "$1/collections/community/network/avi_networkprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_networksecuritypolicy_module.html" "$1/collections/community/network/avi_networksecuritypolicy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_pkiprofile_module.html" "$1/collections/community/network/avi_pkiprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_pool_module.html" "$1/collections/community/network/avi_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_poolgroup_module.html" "$1/collections/community/network/avi_poolgroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_poolgroupdeploymentpolicy_module.html" "$1/collections/community/network/avi_poolgroupdeploymentpolicy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_prioritylabels_module.html" "$1/collections/community/network/avi_prioritylabels_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_role_module.html" "$1/collections/community/network/avi_role_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_scheduler_module.html" "$1/collections/community/network/avi_scheduler_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_seproperties_module.html" "$1/collections/community/network/avi_seproperties_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_serverautoscalepolicy_module.html" "$1/collections/community/network/avi_serverautoscalepolicy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_serviceengine_module.html" "$1/collections/community/network/avi_serviceengine_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_serviceenginegroup_module.html" "$1/collections/community/network/avi_serviceenginegroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_snmptrapprofile_module.html" "$1/collections/community/network/avi_snmptrapprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_sslkeyandcertificate_module.html" "$1/collections/community/network/avi_sslkeyandcertificate_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_sslprofile_module.html" "$1/collections/community/network/avi_sslprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_stringgroup_module.html" "$1/collections/community/network/avi_stringgroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_systemconfiguration_module.html" "$1/collections/community/network/avi_systemconfiguration_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_tenant_module.html" "$1/collections/community/network/avi_tenant_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_trafficcloneprofile_module.html" "$1/collections/community/network/avi_trafficcloneprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_user_module.html" "$1/collections/community/network/avi_user_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_useraccount_module.html" "$1/collections/community/network/avi_useraccount_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_useraccountprofile_module.html" "$1/collections/community/network/avi_useraccountprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_virtualservice_module.html" "$1/collections/community/network/avi_virtualservice_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_vrfcontext_module.html" "$1/collections/community/network/avi_vrfcontext_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_vsdatascriptset_module.html" "$1/collections/community/network/avi_vsdatascriptset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_vsvip_module.html" "$1/collections/community/network/avi_vsvip_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/avi_webhook_module.html" "$1/collections/community/network/avi_webhook_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/awall_module.html" "$1/collections/community/general/awall_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_acm_module.html" "$1/collections/community/aws/aws_acm_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_acm_facts_module.html" "$1/collections/community/aws/aws_acm_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_acm_info_module.html" "$1/collections/community/aws/aws_acm_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_api_gateway_module.html" "$1/collections/community/aws/aws_api_gateway_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_application_scaling_policy_module.html" "$1/collections/community/aws/aws_application_scaling_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_az_facts_module.html" "$1/collections/amazon/aws/aws_az_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_az_info_module.html" "$1/collections/amazon/aws/aws_az_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_batch_compute_environment_module.html" "$1/collections/community/aws/aws_batch_compute_environment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_batch_job_definition_module.html" "$1/collections/community/aws/aws_batch_job_definition_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_batch_job_queue_module.html" "$1/collections/community/aws/aws_batch_job_queue_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_caller_facts_module.html" "$1/collections/amazon/aws/aws_caller_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_caller_info_module.html" "$1/collections/amazon/aws/aws_caller_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_codebuild_module.html" "$1/collections/community/aws/aws_codebuild_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_codecommit_module.html" "$1/collections/community/aws/aws_codecommit_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_codepipeline_module.html" "$1/collections/community/aws/aws_codepipeline_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_config_aggregation_authorization_module.html" "$1/collections/community/aws/aws_config_aggregation_authorization_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_config_aggregator_module.html" "$1/collections/community/aws/aws_config_aggregator_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_config_delivery_channel_module.html" "$1/collections/community/aws/aws_config_delivery_channel_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_config_recorder_module.html" "$1/collections/community/aws/aws_config_recorder_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_config_rule_module.html" "$1/collections/community/aws/aws_config_rule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_direct_connect_connection_module.html" "$1/collections/community/aws/aws_direct_connect_connection_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_direct_connect_gateway_module.html" "$1/collections/community/aws/aws_direct_connect_gateway_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_direct_connect_link_aggregation_group_module.html" "$1/collections/community/aws/aws_direct_connect_link_aggregation_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_direct_connect_virtual_interface_module.html" "$1/collections/community/aws/aws_direct_connect_virtual_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_eks_cluster_module.html" "$1/collections/community/aws/aws_eks_cluster_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_elasticbeanstalk_app_module.html" "$1/collections/community/aws/aws_elasticbeanstalk_app_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_glue_connection_module.html" "$1/collections/community/aws/aws_glue_connection_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_glue_job_module.html" "$1/collections/community/aws/aws_glue_job_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_inspector_target_module.html" "$1/collections/community/aws/aws_inspector_target_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_kms_module.html" "$1/collections/community/aws/aws_kms_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_kms_facts_module.html" "$1/collections/community/aws/aws_kms_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_kms_info_module.html" "$1/collections/community/aws/aws_kms_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_netapp_cvs_FileSystems_module.html" "$1/collections/netapp/aws/aws_netapp_cvs_filesystems_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_netapp_cvs_active_directory_module.html" "$1/collections/netapp/aws/aws_netapp_cvs_active_directory_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_netapp_cvs_pool_module.html" "$1/collections/netapp/aws/aws_netapp_cvs_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_netapp_cvs_snapshots_module.html" "$1/collections/netapp/aws/aws_netapp_cvs_snapshots_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_region_facts_module.html" "$1/collections/community/aws/aws_region_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_region_info_module.html" "$1/collections/community/aws/aws_region_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_s3_module.html" "$1/collections/amazon/aws/aws_s3_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_s3_bucket_facts_module.html" "$1/collections/community/aws/aws_s3_bucket_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_s3_bucket_info_module.html" "$1/collections/community/aws/aws_s3_bucket_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_s3_cors_module.html" "$1/collections/community/aws/aws_s3_cors_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_secret_module.html" "$1/collections/community/aws/aws_secret_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_ses_identity_module.html" "$1/collections/community/aws/aws_ses_identity_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_ses_identity_policy_module.html" "$1/collections/community/aws/aws_ses_identity_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_ses_rule_set_module.html" "$1/collections/community/aws/aws_ses_rule_set_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_sgw_facts_module.html" "$1/collections/community/aws/aws_sgw_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_sgw_info_module.html" "$1/collections/community/aws/aws_sgw_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_ssm_parameter_store_module.html" "$1/collections/community/aws/aws_ssm_parameter_store_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_step_functions_state_machine_module.html" "$1/collections/community/aws/aws_step_functions_state_machine_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_step_functions_state_machine_execution_module.html" "$1/collections/community/aws/aws_step_functions_state_machine_execution_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_waf_condition_module.html" "$1/collections/community/aws/aws_waf_condition_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_waf_facts_module.html" "$1/collections/community/aws/aws_waf_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_waf_info_module.html" "$1/collections/community/aws/aws_waf_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_waf_rule_module.html" "$1/collections/community/aws/aws_waf_rule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/aws_waf_web_acl_module.html" "$1/collections/community/aws/aws_waf_web_acl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_aks_module.html" "$1/collections/azure/azcollection/azure_rm_aks_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_aks_facts_module.html" "$1/collections/community/azure/azure_rm_aks_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_aks_info_module.html" "$1/collections/azure/azcollection/azure_rm_aks_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_aksversion_facts_module.html" "$1/collections/community/azure/azure_rm_aksversion_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_aksversion_info_module.html" "$1/collections/azure/azcollection/azure_rm_aksversion_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_appgateway_module.html" "$1/collections/azure/azcollection/azure_rm_appgateway_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_applicationsecuritygroup_module.html" "$1/collections/azure/azcollection/azure_rm_applicationsecuritygroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_applicationsecuritygroup_facts_module.html" "$1/collections/community/azure/azure_rm_applicationsecuritygroup_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_applicationsecuritygroup_info_module.html" "$1/collections/azure/azcollection/azure_rm_applicationsecuritygroup_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_appserviceplan_module.html" "$1/collections/azure/azcollection/azure_rm_appserviceplan_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_appserviceplan_facts_module.html" "$1/collections/community/azure/azure_rm_appserviceplan_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_appserviceplan_info_module.html" "$1/collections/azure/azcollection/azure_rm_appserviceplan_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_automationaccount_module.html" "$1/collections/azure/azcollection/azure_rm_automationaccount_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_automationaccount_facts_module.html" "$1/collections/community/azure/azure_rm_automationaccount_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_automationaccount_info_module.html" "$1/collections/azure/azcollection/azure_rm_automationaccount_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_autoscale_module.html" "$1/collections/azure/azcollection/azure_rm_autoscale_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_autoscale_facts_module.html" "$1/collections/community/azure/azure_rm_autoscale_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_autoscale_info_module.html" "$1/collections/azure/azcollection/azure_rm_autoscale_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_availabilityset_module.html" "$1/collections/azure/azcollection/azure_rm_availabilityset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_availabilityset_facts_module.html" "$1/collections/community/azure/azure_rm_availabilityset_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_availabilityset_info_module.html" "$1/collections/azure/azcollection/azure_rm_availabilityset_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_azurefirewall_module.html" "$1/collections/azure/azcollection/azure_rm_azurefirewall_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_azurefirewall_info_module.html" "$1/collections/azure/azcollection/azure_rm_azurefirewall_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_batchaccount_module.html" "$1/collections/azure/azcollection/azure_rm_batchaccount_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cdnendpoint_module.html" "$1/collections/azure/azcollection/azure_rm_cdnendpoint_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cdnendpoint_facts_module.html" "$1/collections/community/azure/azure_rm_cdnendpoint_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cdnendpoint_info_module.html" "$1/collections/azure/azcollection/azure_rm_cdnendpoint_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cdnprofile_module.html" "$1/collections/azure/azcollection/azure_rm_cdnprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cdnprofile_facts_module.html" "$1/collections/community/azure/azure_rm_cdnprofile_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cdnprofile_info_module.html" "$1/collections/azure/azcollection/azure_rm_cdnprofile_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_containerinstance_module.html" "$1/collections/azure/azcollection/azure_rm_containerinstance_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_containerinstance_facts_module.html" "$1/collections/community/azure/azure_rm_containerinstance_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_containerinstance_info_module.html" "$1/collections/azure/azcollection/azure_rm_containerinstance_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_containerregistry_module.html" "$1/collections/azure/azcollection/azure_rm_containerregistry_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_containerregistry_facts_module.html" "$1/collections/community/azure/azure_rm_containerregistry_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_containerregistry_info_module.html" "$1/collections/azure/azcollection/azure_rm_containerregistry_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cosmosdbaccount_module.html" "$1/collections/azure/azcollection/azure_rm_cosmosdbaccount_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cosmosdbaccount_facts_module.html" "$1/collections/community/azure/azure_rm_cosmosdbaccount_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_cosmosdbaccount_info_module.html" "$1/collections/azure/azcollection/azure_rm_cosmosdbaccount_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_deployment_module.html" "$1/collections/azure/azcollection/azure_rm_deployment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_deployment_facts_module.html" "$1/collections/community/azure/azure_rm_deployment_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_deployment_info_module.html" "$1/collections/azure/azcollection/azure_rm_deployment_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlab_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlab_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlab_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlab_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlab_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlab_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabarmtemplate_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabarmtemplate_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabarmtemplate_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabarmtemplate_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabartifact_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabartifact_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabartifact_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabartifact_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabartifactsource_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabartifactsource_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabartifactsource_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabartifactsource_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabartifactsource_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabartifactsource_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabcustomimage_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabcustomimage_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabcustomimage_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabcustomimage_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabcustomimage_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabcustomimage_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabenvironment_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabenvironment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabenvironment_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabenvironment_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabenvironment_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabenvironment_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabpolicy_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabpolicy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabpolicy_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabpolicy_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabpolicy_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabpolicy_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabschedule_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabschedule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabschedule_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabschedule_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabschedule_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabschedule_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabvirtualmachine_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabvirtualmachine_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabvirtualmachine_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabvirtualmachine_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabvirtualmachine_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabvirtualmachine_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabvirtualnetwork_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabvirtualnetwork_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabvirtualnetwork_facts_module.html" "$1/collections/community/azure/azure_rm_devtestlabvirtualnetwork_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_devtestlabvirtualnetwork_info_module.html" "$1/collections/azure/azcollection/azure_rm_devtestlabvirtualnetwork_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_dnsrecordset_module.html" "$1/collections/azure/azcollection/azure_rm_dnsrecordset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_dnsrecordset_facts_module.html" "$1/collections/community/azure/azure_rm_dnsrecordset_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_dnsrecordset_info_module.html" "$1/collections/azure/azcollection/azure_rm_dnsrecordset_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_dnszone_module.html" "$1/collections/azure/azcollection/azure_rm_dnszone_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_dnszone_facts_module.html" "$1/collections/community/azure/azure_rm_dnszone_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_dnszone_info_module.html" "$1/collections/azure/azcollection/azure_rm_dnszone_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_functionapp_module.html" "$1/collections/azure/azcollection/azure_rm_functionapp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_functionapp_facts_module.html" "$1/collections/community/azure/azure_rm_functionapp_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_functionapp_info_module.html" "$1/collections/azure/azcollection/azure_rm_functionapp_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_gallery_module.html" "$1/collections/azure/azcollection/azure_rm_gallery_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_gallery_info_module.html" "$1/collections/azure/azcollection/azure_rm_gallery_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_galleryimage_module.html" "$1/collections/azure/azcollection/azure_rm_galleryimage_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_galleryimage_info_module.html" "$1/collections/azure/azcollection/azure_rm_galleryimage_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_galleryimageversion_module.html" "$1/collections/azure/azcollection/azure_rm_galleryimageversion_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_galleryimageversion_info_module.html" "$1/collections/azure/azcollection/azure_rm_galleryimageversion_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_hdinsightcluster_module.html" "$1/collections/azure/azcollection/azure_rm_hdinsightcluster_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_hdinsightcluster_facts_module.html" "$1/collections/community/azure/azure_rm_hdinsightcluster_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_hdinsightcluster_info_module.html" "$1/collections/azure/azcollection/azure_rm_hdinsightcluster_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_image_module.html" "$1/collections/azure/azcollection/azure_rm_image_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_image_facts_module.html" "$1/collections/community/azure/azure_rm_image_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_image_info_module.html" "$1/collections/azure/azcollection/azure_rm_image_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_iotdevice_module.html" "$1/collections/azure/azcollection/azure_rm_iotdevice_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_iotdevice_info_module.html" "$1/collections/azure/azcollection/azure_rm_iotdevice_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_iotdevicemodule_module.html" "$1/collections/azure/azcollection/azure_rm_iotdevicemodule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_iothub_module.html" "$1/collections/azure/azcollection/azure_rm_iothub_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_iothub_info_module.html" "$1/collections/azure/azcollection/azure_rm_iothub_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_iothubconsumergroup_module.html" "$1/collections/azure/azcollection/azure_rm_iothubconsumergroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_keyvault_module.html" "$1/collections/azure/azcollection/azure_rm_keyvault_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_keyvault_info_module.html" "$1/collections/azure/azcollection/azure_rm_keyvault_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_keyvaultkey_module.html" "$1/collections/azure/azcollection/azure_rm_keyvaultkey_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_keyvaultkey_info_module.html" "$1/collections/azure/azcollection/azure_rm_keyvaultkey_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_keyvaultsecret_module.html" "$1/collections/azure/azcollection/azure_rm_keyvaultsecret_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_loadbalancer_module.html" "$1/collections/azure/azcollection/azure_rm_loadbalancer_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_loadbalancer_facts_module.html" "$1/collections/community/azure/azure_rm_loadbalancer_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_loadbalancer_info_module.html" "$1/collections/azure/azcollection/azure_rm_loadbalancer_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_lock_module.html" "$1/collections/azure/azcollection/azure_rm_lock_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_lock_facts_module.html" "$1/collections/community/azure/azure_rm_lock_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_lock_info_module.html" "$1/collections/azure/azcollection/azure_rm_lock_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_loganalyticsworkspace_module.html" "$1/collections/azure/azcollection/azure_rm_loganalyticsworkspace_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_loganalyticsworkspace_facts_module.html" "$1/collections/community/azure/azure_rm_loganalyticsworkspace_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_loganalyticsworkspace_info_module.html" "$1/collections/azure/azcollection/azure_rm_loganalyticsworkspace_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_managed_disk_module.html" "$1/collections/community/azure/azure_rm_managed_disk_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_managed_disk_facts_module.html" "$1/collections/community/azure/azure_rm_managed_disk_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_manageddisk_module.html" "$1/collections/azure/azcollection/azure_rm_manageddisk_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_manageddisk_facts_module.html" "$1/collections/community/azure/azure_rm_manageddisk_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_manageddisk_info_module.html" "$1/collections/azure/azcollection/azure_rm_manageddisk_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbconfiguration_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbconfiguration_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbconfiguration_facts_module.html" "$1/collections/community/azure/azure_rm_mariadbconfiguration_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbconfiguration_info_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbconfiguration_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbdatabase_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbdatabase_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbdatabase_facts_module.html" "$1/collections/community/azure/azure_rm_mariadbdatabase_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbdatabase_info_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbdatabase_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbfirewallrule_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbfirewallrule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbfirewallrule_facts_module.html" "$1/collections/community/azure/azure_rm_mariadbfirewallrule_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbfirewallrule_info_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbfirewallrule_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbserver_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbserver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbserver_facts_module.html" "$1/collections/community/azure/azure_rm_mariadbserver_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mariadbserver_info_module.html" "$1/collections/azure/azcollection/azure_rm_mariadbserver_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_monitorlogprofile_module.html" "$1/collections/azure/azcollection/azure_rm_monitorlogprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlconfiguration_module.html" "$1/collections/azure/azcollection/azure_rm_mysqlconfiguration_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlconfiguration_facts_module.html" "$1/collections/community/azure/azure_rm_mysqlconfiguration_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlconfiguration_info_module.html" "$1/collections/azure/azcollection/azure_rm_mysqlconfiguration_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqldatabase_module.html" "$1/collections/azure/azcollection/azure_rm_mysqldatabase_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqldatabase_facts_module.html" "$1/collections/community/azure/azure_rm_mysqldatabase_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqldatabase_info_module.html" "$1/collections/azure/azcollection/azure_rm_mysqldatabase_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlfirewallrule_module.html" "$1/collections/azure/azcollection/azure_rm_mysqlfirewallrule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlfirewallrule_facts_module.html" "$1/collections/community/azure/azure_rm_mysqlfirewallrule_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlfirewallrule_info_module.html" "$1/collections/azure/azcollection/azure_rm_mysqlfirewallrule_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlserver_module.html" "$1/collections/azure/azcollection/azure_rm_mysqlserver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlserver_facts_module.html" "$1/collections/community/azure/azure_rm_mysqlserver_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_mysqlserver_info_module.html" "$1/collections/azure/azcollection/azure_rm_mysqlserver_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_networkinterface_module.html" "$1/collections/azure/azcollection/azure_rm_networkinterface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_networkinterface_facts_module.html" "$1/collections/community/azure/azure_rm_networkinterface_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_networkinterface_info_module.html" "$1/collections/azure/azcollection/azure_rm_networkinterface_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlconfiguration_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqlconfiguration_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlconfiguration_facts_module.html" "$1/collections/community/azure/azure_rm_postgresqlconfiguration_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlconfiguration_info_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqlconfiguration_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqldatabase_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqldatabase_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqldatabase_facts_module.html" "$1/collections/community/azure/azure_rm_postgresqldatabase_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqldatabase_info_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqldatabase_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlfirewallrule_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqlfirewallrule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlfirewallrule_facts_module.html" "$1/collections/community/azure/azure_rm_postgresqlfirewallrule_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlfirewallrule_info_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqlfirewallrule_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlserver_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqlserver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlserver_facts_module.html" "$1/collections/community/azure/azure_rm_postgresqlserver_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_postgresqlserver_info_module.html" "$1/collections/azure/azcollection/azure_rm_postgresqlserver_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_publicipaddress_module.html" "$1/collections/azure/azcollection/azure_rm_publicipaddress_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_publicipaddress_facts_module.html" "$1/collections/community/azure/azure_rm_publicipaddress_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_publicipaddress_info_module.html" "$1/collections/azure/azcollection/azure_rm_publicipaddress_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_rediscache_module.html" "$1/collections/azure/azcollection/azure_rm_rediscache_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_rediscache_facts_module.html" "$1/collections/community/azure/azure_rm_rediscache_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_rediscache_info_module.html" "$1/collections/azure/azcollection/azure_rm_rediscache_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_rediscachefirewallrule_module.html" "$1/collections/azure/azcollection/azure_rm_rediscachefirewallrule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_resource_module.html" "$1/collections/azure/azcollection/azure_rm_resource_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_resource_facts_module.html" "$1/collections/community/azure/azure_rm_resource_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_resource_info_module.html" "$1/collections/azure/azcollection/azure_rm_resource_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_resourcegroup_module.html" "$1/collections/azure/azcollection/azure_rm_resourcegroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_resourcegroup_facts_module.html" "$1/collections/community/azure/azure_rm_resourcegroup_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_resourcegroup_info_module.html" "$1/collections/azure/azcollection/azure_rm_resourcegroup_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_roleassignment_module.html" "$1/collections/azure/azcollection/azure_rm_roleassignment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_roleassignment_facts_module.html" "$1/collections/community/azure/azure_rm_roleassignment_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_roleassignment_info_module.html" "$1/collections/azure/azcollection/azure_rm_roleassignment_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_roledefinition_module.html" "$1/collections/azure/azcollection/azure_rm_roledefinition_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_roledefinition_facts_module.html" "$1/collections/community/azure/azure_rm_roledefinition_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_roledefinition_info_module.html" "$1/collections/azure/azcollection/azure_rm_roledefinition_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_route_module.html" "$1/collections/azure/azcollection/azure_rm_route_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_routetable_module.html" "$1/collections/azure/azcollection/azure_rm_routetable_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_routetable_facts_module.html" "$1/collections/community/azure/azure_rm_routetable_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_routetable_info_module.html" "$1/collections/azure/azcollection/azure_rm_routetable_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_securitygroup_module.html" "$1/collections/azure/azcollection/azure_rm_securitygroup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_securitygroup_facts_module.html" "$1/collections/community/azure/azure_rm_securitygroup_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_securitygroup_info_module.html" "$1/collections/azure/azcollection/azure_rm_securitygroup_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebus_module.html" "$1/collections/azure/azcollection/azure_rm_servicebus_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebus_facts_module.html" "$1/collections/community/azure/azure_rm_servicebus_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebus_info_module.html" "$1/collections/azure/azcollection/azure_rm_servicebus_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebusqueue_module.html" "$1/collections/azure/azcollection/azure_rm_servicebusqueue_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebussaspolicy_module.html" "$1/collections/azure/azcollection/azure_rm_servicebussaspolicy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebustopic_module.html" "$1/collections/azure/azcollection/azure_rm_servicebustopic_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_servicebustopicsubscription_module.html" "$1/collections/azure/azcollection/azure_rm_servicebustopicsubscription_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_snapshot_module.html" "$1/collections/azure/azcollection/azure_rm_snapshot_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqldatabase_module.html" "$1/collections/azure/azcollection/azure_rm_sqldatabase_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqldatabase_facts_module.html" "$1/collections/community/azure/azure_rm_sqldatabase_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqldatabase_info_module.html" "$1/collections/azure/azcollection/azure_rm_sqldatabase_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqlfirewallrule_module.html" "$1/collections/azure/azcollection/azure_rm_sqlfirewallrule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqlfirewallrule_facts_module.html" "$1/collections/community/azure/azure_rm_sqlfirewallrule_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqlfirewallrule_info_module.html" "$1/collections/azure/azcollection/azure_rm_sqlfirewallrule_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqlserver_module.html" "$1/collections/azure/azcollection/azure_rm_sqlserver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqlserver_facts_module.html" "$1/collections/community/azure/azure_rm_sqlserver_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_sqlserver_info_module.html" "$1/collections/azure/azcollection/azure_rm_sqlserver_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_storageaccount_module.html" "$1/collections/azure/azcollection/azure_rm_storageaccount_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_storageaccount_facts_module.html" "$1/collections/community/azure/azure_rm_storageaccount_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_storageaccount_info_module.html" "$1/collections/azure/azcollection/azure_rm_storageaccount_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_storageblob_module.html" "$1/collections/azure/azcollection/azure_rm_storageblob_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_subnet_module.html" "$1/collections/azure/azcollection/azure_rm_subnet_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_subnet_facts_module.html" "$1/collections/community/azure/azure_rm_subnet_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_subnet_info_module.html" "$1/collections/azure/azcollection/azure_rm_subnet_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_trafficmanagerendpoint_module.html" "$1/collections/azure/azcollection/azure_rm_trafficmanagerendpoint_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_trafficmanagerendpoint_facts_module.html" "$1/collections/community/azure/azure_rm_trafficmanagerendpoint_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_trafficmanagerendpoint_info_module.html" "$1/collections/azure/azcollection/azure_rm_trafficmanagerendpoint_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_trafficmanagerprofile_module.html" "$1/collections/azure/azcollection/azure_rm_trafficmanagerprofile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_trafficmanagerprofile_facts_module.html" "$1/collections/community/azure/azure_rm_trafficmanagerprofile_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_trafficmanagerprofile_info_module.html" "$1/collections/azure/azcollection/azure_rm_trafficmanagerprofile_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachine_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachine_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachine_extension_module.html" "$1/collections/community/azure/azure_rm_virtualmachine_extension_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachine_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachine_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachine_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachine_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachine_scaleset_module.html" "$1/collections/community/azure/azure_rm_virtualmachine_scaleset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachine_scaleset_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachine_scaleset_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachineextension_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachineextension_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachineextension_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachineextension_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachineextension_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachineextension_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachineimage_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachineimage_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachineimage_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachineimage_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescaleset_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachinescaleset_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescaleset_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachinescaleset_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescaleset_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachinescaleset_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescalesetextension_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachinescalesetextension_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescalesetextension_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachinescalesetextension_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescalesetextension_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachinescalesetextension_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescalesetinstance_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachinescalesetinstance_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescalesetinstance_facts_module.html" "$1/collections/community/azure/azure_rm_virtualmachinescalesetinstance_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualmachinescalesetinstance_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualmachinescalesetinstance_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetwork_module.html" "$1/collections/azure/azcollection/azure_rm_virtualnetwork_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetwork_facts_module.html" "$1/collections/community/azure/azure_rm_virtualnetwork_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetwork_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualnetwork_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetworkgateway_module.html" "$1/collections/azure/azcollection/azure_rm_virtualnetworkgateway_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetworkpeering_module.html" "$1/collections/azure/azcollection/azure_rm_virtualnetworkpeering_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetworkpeering_facts_module.html" "$1/collections/community/azure/azure_rm_virtualnetworkpeering_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_virtualnetworkpeering_info_module.html" "$1/collections/azure/azcollection/azure_rm_virtualnetworkpeering_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_webapp_module.html" "$1/collections/azure/azcollection/azure_rm_webapp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_webapp_facts_module.html" "$1/collections/community/azure/azure_rm_webapp_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_webapp_info_module.html" "$1/collections/azure/azcollection/azure_rm_webapp_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/azure_rm_webappslot_module.html" "$1/collections/azure/azcollection/azure_rm_webappslot_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bcf_switch_module.html" "$1/collections/community/network/bcf_switch_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/beadm_module.html" "$1/collections/community/general/beadm_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bearychat_module.html" "$1/collections/community/general/bearychat_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_apm_acl_module.html" "$1/collections/f5networks/f5_modules/bigip_apm_acl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_apm_network_access_module.html" "$1/collections/f5networks/f5_modules/bigip_apm_network_access_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_apm_policy_fetch_module.html" "$1/collections/f5networks/f5_modules/bigip_apm_policy_fetch_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_apm_policy_import_module.html" "$1/collections/f5networks/f5_modules/bigip_apm_policy_import_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_asm_dos_application_module.html" "$1/collections/f5networks/f5_modules/bigip_asm_dos_application_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_asm_policy_fetch_module.html" "$1/collections/f5networks/f5_modules/bigip_asm_policy_fetch_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_asm_policy_import_module.html" "$1/collections/f5networks/f5_modules/bigip_asm_policy_import_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_asm_policy_manage_module.html" "$1/collections/f5networks/f5_modules/bigip_asm_policy_manage_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_asm_policy_server_technology_module.html" "$1/collections/f5networks/f5_modules/bigip_asm_policy_server_technology_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_asm_policy_signature_set_module.html" "$1/collections/f5networks/f5_modules/bigip_asm_policy_signature_set_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_cli_alias_module.html" "$1/collections/f5networks/f5_modules/bigip_cli_alias_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_cli_script_module.html" "$1/collections/f5networks/f5_modules/bigip_cli_script_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_command_module.html" "$1/collections/f5networks/f5_modules/bigip_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_config_module.html" "$1/collections/f5networks/f5_modules/bigip_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_configsync_action_module.html" "$1/collections/f5networks/f5_modules/bigip_configsync_action_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_data_group_module.html" "$1/collections/f5networks/f5_modules/bigip_data_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_auth_module.html" "$1/collections/f5networks/f5_modules/bigip_device_auth_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_auth_ldap_module.html" "$1/collections/f5networks/f5_modules/bigip_device_auth_ldap_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_certificate_module.html" "$1/collections/f5networks/f5_modules/bigip_device_certificate_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_connectivity_module.html" "$1/collections/f5networks/f5_modules/bigip_device_connectivity_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_dns_module.html" "$1/collections/f5networks/f5_modules/bigip_device_dns_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_facts_module.html" "$1/collections/f5networks/f5_modules/bigip_device_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_group_module.html" "$1/collections/f5networks/f5_modules/bigip_device_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_group_member_module.html" "$1/collections/f5networks/f5_modules/bigip_device_group_member_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_ha_group_module.html" "$1/collections/f5networks/f5_modules/bigip_device_ha_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_httpd_module.html" "$1/collections/f5networks/f5_modules/bigip_device_httpd_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_info_module.html" "$1/collections/f5networks/f5_modules/bigip_device_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_license_module.html" "$1/collections/f5networks/f5_modules/bigip_device_license_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_ntp_module.html" "$1/collections/f5networks/f5_modules/bigip_device_ntp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_sshd_module.html" "$1/collections/f5networks/f5_modules/bigip_device_sshd_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_syslog_module.html" "$1/collections/f5networks/f5_modules/bigip_device_syslog_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_traffic_group_module.html" "$1/collections/f5networks/f5_modules/bigip_device_traffic_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_device_trust_module.html" "$1/collections/f5networks/f5_modules/bigip_device_trust_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_dns_cache_resolver_module.html" "$1/collections/f5networks/f5_modules/bigip_dns_cache_resolver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_dns_nameserver_module.html" "$1/collections/f5networks/f5_modules/bigip_dns_nameserver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_dns_resolver_module.html" "$1/collections/f5networks/f5_modules/bigip_dns_resolver_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_dns_zone_module.html" "$1/collections/f5networks/f5_modules/bigip_dns_zone_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_file_copy_module.html" "$1/collections/f5networks/f5_modules/bigip_file_copy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_address_list_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_address_list_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_dos_profile_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_dos_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_dos_vector_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_dos_vector_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_global_rules_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_global_rules_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_log_profile_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_log_profile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_log_profile_network_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_log_profile_network_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_policy_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_port_list_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_port_list_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_rule_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_rule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_rule_list_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_rule_list_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_firewall_schedule_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_schedule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_datacenter_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_datacenter_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_global_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_bigip_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_bigip_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_external_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_external_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_firepass_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_firepass_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_http_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_http_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_https_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_https_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_tcp_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_tcp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_monitor_tcp_half_open_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_monitor_tcp_half_open_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_pool_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_pool_member_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_pool_member_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_server_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_topology_record_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_topology_record_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_topology_region_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_topology_region_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_virtual_server_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_virtual_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_gtm_wide_ip_module.html" "$1/collections/f5networks/f5_modules/bigip_gtm_wide_ip_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_hostname_module.html" "$1/collections/f5networks/f5_modules/bigip_hostname_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_iapp_service_module.html" "$1/collections/f5networks/f5_modules/bigip_iapp_service_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_iapp_template_module.html" "$1/collections/f5networks/f5_modules/bigip_iapp_template_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_iapplx_package_module.html" "$1/collections/f5networks/f5_modules/bigip_lx_package_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ike_peer_module.html" "$1/collections/f5networks/f5_modules/bigip_ike_peer_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_imish_config_module.html" "$1/collections/f5networks/f5_modules/bigip_imish_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ipsec_policy_module.html" "$1/collections/f5networks/f5_modules/bigip_ipsec_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_irule_module.html" "$1/collections/f5networks/f5_modules/bigip_irule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_log_destination_module.html" "$1/collections/f5networks/f5_modules/bigip_log_destination_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_log_publisher_module.html" "$1/collections/f5networks/f5_modules/bigip_log_publisher_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_lx_package_module.html" "$1/collections/f5networks/f5_modules/bigip_lx_package_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_management_route_module.html" "$1/collections/f5networks/f5_modules/bigip_management_route_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_message_routing_peer_module.html" "$1/collections/f5networks/f5_modules/bigip_message_routing_peer_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_message_routing_protocol_module.html" "$1/collections/f5networks/f5_modules/bigip_message_routing_protocol_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_message_routing_route_module.html" "$1/collections/f5networks/f5_modules/bigip_message_routing_route_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_message_routing_router_module.html" "$1/collections/f5networks/f5_modules/bigip_message_routing_router_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_message_routing_transport_config_module.html" "$1/collections/f5networks/f5_modules/bigip_message_routing_transport_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_dns_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_dns_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_external_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_external_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_gateway_icmp_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_gateway_icmp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_http_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_http_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_https_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_https_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_ldap_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_ldap_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_snmp_dca_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_snmp_dca_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_tcp_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_tcp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_tcp_echo_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_tcp_echo_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_tcp_half_open_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_tcp_half_open_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_monitor_udp_module.html" "$1/collections/f5networks/f5_modules/bigip_monitor_udp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_node_module.html" "$1/collections/f5networks/f5_modules/bigip_node_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_partition_module.html" "$1/collections/f5networks/f5_modules/bigip_partition_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_password_policy_module.html" "$1/collections/f5networks/f5_modules/bigip_password_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_policy_module.html" "$1/collections/f5networks/f5_modules/bigip_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_policy_rule_module.html" "$1/collections/f5networks/f5_modules/bigip_policy_rule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_pool_module.html" "$1/collections/f5networks/f5_modules/bigip_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_pool_member_module.html" "$1/collections/f5networks/f5_modules/bigip_pool_member_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_analytics_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_analytics_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_client_ssl_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_client_ssl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_dns_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_dns_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_fastl4_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_fastl4_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_http_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_http_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_http2_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_http2_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_http_compression_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_http_compression_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_oneconnect_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_oneconnect_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_persistence_cookie_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_persistence_cookie_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_persistence_src_addr_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_persistence_src_addr_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_server_ssl_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_server_ssl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_tcp_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_tcp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_profile_udp_module.html" "$1/collections/f5networks/f5_modules/bigip_profile_udp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_provision_module.html" "$1/collections/f5networks/f5_modules/bigip_provision_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_qkview_module.html" "$1/collections/f5networks/f5_modules/bigip_qkview_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_remote_role_module.html" "$1/collections/f5networks/f5_modules/bigip_remote_role_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_remote_syslog_module.html" "$1/collections/f5networks/f5_modules/bigip_remote_syslog_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_remote_user_module.html" "$1/collections/f5networks/f5_modules/bigip_remote_user_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_routedomain_module.html" "$1/collections/f5networks/f5_modules/bigip_routedomain_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_security_address_list_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_address_list_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_security_port_list_module.html" "$1/collections/f5networks/f5_modules/bigip_firewall_port_list_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_selfip_module.html" "$1/collections/f5networks/f5_modules/bigip_selfip_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_service_policy_module.html" "$1/collections/f5networks/f5_modules/bigip_service_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_smtp_module.html" "$1/collections/f5networks/f5_modules/bigip_smtp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_snat_pool_module.html" "$1/collections/f5networks/f5_modules/bigip_snat_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_snat_translation_module.html" "$1/collections/f5networks/f5_modules/bigip_snat_translation_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_snmp_module.html" "$1/collections/f5networks/f5_modules/bigip_snmp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_snmp_community_module.html" "$1/collections/f5networks/f5_modules/bigip_snmp_community_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_snmp_trap_module.html" "$1/collections/f5networks/f5_modules/bigip_snmp_trap_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_software_image_module.html" "$1/collections/f5networks/f5_modules/bigip_software_image_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_software_install_module.html" "$1/collections/f5networks/f5_modules/bigip_software_install_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_software_update_module.html" "$1/collections/f5networks/f5_modules/bigip_software_update_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ssl_certificate_module.html" "$1/collections/f5networks/f5_modules/bigip_ssl_certificate_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ssl_key_module.html" "$1/collections/f5networks/f5_modules/bigip_ssl_key_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ssl_ocsp_module.html" "$1/collections/f5networks/f5_modules/bigip_ssl_ocsp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_static_route_module.html" "$1/collections/f5networks/f5_modules/bigip_static_route_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_sys_daemon_log_tmm_module.html" "$1/collections/f5networks/f5_modules/bigip_sys_daemon_log_tmm_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_sys_db_module.html" "$1/collections/f5networks/f5_modules/bigip_sys_db_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_sys_global_module.html" "$1/collections/f5networks/f5_modules/bigip_sys_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_timer_policy_module.html" "$1/collections/f5networks/f5_modules/bigip_timer_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_traffic_group_module.html" "$1/collections/f5networks/f5_modules/bigip_device_traffic_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_traffic_selector_module.html" "$1/collections/f5networks/f5_modules/bigip_traffic_selector_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_trunk_module.html" "$1/collections/f5networks/f5_modules/bigip_trunk_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_tunnel_module.html" "$1/collections/f5networks/f5_modules/bigip_tunnel_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ucs_module.html" "$1/collections/f5networks/f5_modules/bigip_ucs_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_ucs_fetch_module.html" "$1/collections/f5networks/f5_modules/bigip_ucs_fetch_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_user_module.html" "$1/collections/f5networks/f5_modules/bigip_user_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_vcmp_guest_module.html" "$1/collections/f5networks/f5_modules/bigip_vcmp_guest_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_virtual_address_module.html" "$1/collections/f5networks/f5_modules/bigip_virtual_address_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_virtual_server_module.html" "$1/collections/f5networks/f5_modules/bigip_virtual_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_vlan_module.html" "$1/collections/f5networks/f5_modules/bigip_vlan_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigip_wait_module.html" "$1/collections/f5networks/f5_modules/bigip_wait_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_application_fasthttp_module.html" "$1/collections/f5networks/f5_modules/bigiq_application_fasthttp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_application_fastl4_tcp_module.html" "$1/collections/f5networks/f5_modules/bigiq_application_fastl4_tcp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_application_fastl4_udp_module.html" "$1/collections/f5networks/f5_modules/bigiq_application_fastl4_udp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_application_http_module.html" "$1/collections/f5networks/f5_modules/bigiq_application_http_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_application_https_offload_module.html" "$1/collections/f5networks/f5_modules/bigiq_application_https_offload_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_application_https_waf_module.html" "$1/collections/f5networks/f5_modules/bigiq_application_https_waf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_device_discovery_module.html" "$1/collections/f5networks/f5_modules/bigiq_device_discovery_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_device_info_module.html" "$1/collections/f5networks/f5_modules/bigiq_device_info_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_regkey_license_module.html" "$1/collections/f5networks/f5_modules/bigiq_regkey_license_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_regkey_license_assignment_module.html" "$1/collections/f5networks/f5_modules/bigiq_regkey_license_assignment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_regkey_pool_module.html" "$1/collections/f5networks/f5_modules/bigiq_regkey_pool_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_utility_license_module.html" "$1/collections/f5networks/f5_modules/bigiq_utility_license_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigiq_utility_license_assignment_module.html" "$1/collections/f5networks/f5_modules/bigiq_utility_license_assignment_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigmon_chain_module.html" "$1/collections/community/network/bigmon_chain_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigmon_policy_module.html" "$1/collections/community/network/bigmon_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bigpanda_module.html" "$1/collections/community/general/bigpanda_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bitbucket_access_key_module.html" "$1/collections/community/general/bitbucket_access_key_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bitbucket_pipeline_key_pair_module.html" "$1/collections/community/general/bitbucket_pipeline_key_pair_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bitbucket_pipeline_known_host_module.html" "$1/collections/community/general/bitbucket_pipeline_known_host_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bitbucket_pipeline_variable_module.html" "$1/collections/community/general/bitbucket_pipeline_variable_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/blockinfile_module.html" "$1/collections/ansible/builtin/blockinfile_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bower_module.html" "$1/collections/community/general/bower_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bundler_module.html" "$1/collections/community/general/bundler_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/bzr_module.html" "$1/collections/community/general/bzr_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/campfire_module.html" "$1/collections/community/general/campfire_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/capabilities_module.html" "$1/collections/community/general/capabilities_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/catapult_module.html" "$1/collections/community/general/catapult_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_aaa_server_module.html" "$1/collections/community/network/ce_aaa_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_aaa_server_host_module.html" "$1/collections/community/network/ce_aaa_server_host_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_acl_module.html" "$1/collections/community/network/ce_acl_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_acl_advance_module.html" "$1/collections/community/network/ce_acl_advance_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_acl_interface_module.html" "$1/collections/community/network/ce_acl_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bfd_global_module.html" "$1/collections/community/network/ce_bfd_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bfd_session_module.html" "$1/collections/community/network/ce_bfd_session_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bfd_view_module.html" "$1/collections/community/network/ce_bfd_view_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bgp_module.html" "$1/collections/community/network/ce_bgp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bgp_af_module.html" "$1/collections/community/network/ce_bgp_af_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bgp_neighbor_module.html" "$1/collections/community/network/ce_bgp_neighbor_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_bgp_neighbor_af_module.html" "$1/collections/community/network/ce_bgp_neighbor_af_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_command_module.html" "$1/collections/community/network/ce_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_config_module.html" "$1/collections/community/network/ce_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_dldp_module.html" "$1/collections/community/network/ce_dldp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_dldp_interface_module.html" "$1/collections/community/network/ce_dldp_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_eth_trunk_module.html" "$1/collections/community/network/ce_eth_trunk_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_evpn_bd_vni_module.html" "$1/collections/community/network/ce_evpn_bd_vni_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_evpn_bgp_module.html" "$1/collections/community/network/ce_evpn_bgp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_evpn_bgp_rr_module.html" "$1/collections/community/network/ce_evpn_bgp_rr_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_evpn_global_module.html" "$1/collections/community/network/ce_evpn_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_facts_module.html" "$1/collections/community/network/ce_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_file_copy_module.html" "$1/collections/community/network/ce_file_copy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_info_center_debug_module.html" "$1/collections/community/network/ce_info_center_debug_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_info_center_global_module.html" "$1/collections/community/network/ce_info_center_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_info_center_log_module.html" "$1/collections/community/network/ce_info_center_log_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_info_center_trap_module.html" "$1/collections/community/network/ce_info_center_trap_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_interface_module.html" "$1/collections/community/network/ce_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_interface_ospf_module.html" "$1/collections/community/network/ce_interface_ospf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_ip_interface_module.html" "$1/collections/community/network/ce_ip_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_is_is_instance_module.html" "$1/collections/community/network/ce_is_is_instance_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_is_is_interface_module.html" "$1/collections/community/network/ce_is_is_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_is_is_view_module.html" "$1/collections/community/network/ce_is_is_view_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_lacp_module.html" "$1/collections/community/network/ce_lacp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_link_status_module.html" "$1/collections/community/network/ce_link_status_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_lldp_module.html" "$1/collections/community/network/ce_lldp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_lldp_interface_module.html" "$1/collections/community/network/ce_lldp_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_mdn_interface_module.html" "$1/collections/community/network/ce_mdn_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_mlag_config_module.html" "$1/collections/community/network/ce_mlag_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_mlag_interface_module.html" "$1/collections/community/network/ce_mlag_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_mtu_module.html" "$1/collections/community/network/ce_mtu_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_multicast_global_module.html" "$1/collections/community/network/ce_multicast_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_multicast_igmp_enable_module.html" "$1/collections/community/network/ce_multicast_igmp_enable_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_netconf_module.html" "$1/collections/community/network/ce_netconf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_netstream_aging_module.html" "$1/collections/community/network/ce_netstream_aging_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_netstream_export_module.html" "$1/collections/community/network/ce_netstream_export_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_netstream_global_module.html" "$1/collections/community/network/ce_netstream_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_netstream_template_module.html" "$1/collections/community/network/ce_netstream_template_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_ntp_module.html" "$1/collections/community/network/ce_ntp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_ntp_auth_module.html" "$1/collections/community/network/ce_ntp_auth_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_ospf_module.html" "$1/collections/community/network/ce_ospf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_ospf_vrf_module.html" "$1/collections/community/network/ce_ospf_vrf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_reboot_module.html" "$1/collections/community/network/ce_reboot_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_rollback_module.html" "$1/collections/community/network/ce_rollback_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_sflow_module.html" "$1/collections/community/network/ce_sflow_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_snmp_community_module.html" "$1/collections/community/network/ce_snmp_community_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_snmp_contact_module.html" "$1/collections/community/network/ce_snmp_contact_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_snmp_location_module.html" "$1/collections/community/network/ce_snmp_location_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_snmp_target_host_module.html" "$1/collections/community/network/ce_snmp_target_host_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_snmp_traps_module.html" "$1/collections/community/network/ce_snmp_traps_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_snmp_user_module.html" "$1/collections/community/network/ce_snmp_user_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_startup_module.html" "$1/collections/community/network/ce_startup_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_static_route_module.html" "$1/collections/community/network/ce_static_route_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_static_route_bfd_module.html" "$1/collections/community/network/ce_static_route_bfd_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_stp_module.html" "$1/collections/community/network/ce_stp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_switchport_module.html" "$1/collections/community/network/ce_switchport_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vlan_module.html" "$1/collections/community/network/ce_vlan_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vrf_module.html" "$1/collections/community/network/ce_vrf_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vrf_af_module.html" "$1/collections/community/network/ce_vrf_af_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vrf_interface_module.html" "$1/collections/community/network/ce_vrf_interface_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vrrp_module.html" "$1/collections/community/network/ce_vrrp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vxlan_arp_module.html" "$1/collections/community/network/ce_vxlan_arp_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vxlan_gateway_module.html" "$1/collections/community/network/ce_vxlan_gateway_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vxlan_global_module.html" "$1/collections/community/network/ce_vxlan_global_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vxlan_tunnel_module.html" "$1/collections/community/network/ce_vxlan_tunnel_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/ce_vxlan_vap_module.html" "$1/collections/community/network/ce_vxlan_vap_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/certificate_complete_chain_module.html" "$1/collections/community/crypto/certificate_complete_chain_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_access_layer_facts_module.html" "$1/collections/check_point/mgmt/checkpoint_access_layer_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_access_rule_module.html" "$1/collections/check_point/mgmt/checkpoint_access_rule_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_access_rule_facts_module.html" "$1/collections/check_point/mgmt/checkpoint_access_rule_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_host_module.html" "$1/collections/check_point/mgmt/checkpoint_host_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_host_facts_module.html" "$1/collections/check_point/mgmt/checkpoint_host_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_object_facts_module.html" "$1/collections/check_point/mgmt/checkpoint_object_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_run_script_module.html" "$1/collections/check_point/mgmt/checkpoint_run_script_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_session_module.html" "$1/collections/check_point/mgmt/checkpoint_session_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/checkpoint_task_facts_module.html" "$1/collections/check_point/mgmt/checkpoint_task_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/circonus_annotation_module.html" "$1/collections/community/general/circonus_annotation_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/cisco_spark_module.html" "$1/collections/community/general/cisco_spark_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_aa_policy_module.html" "$1/collections/community/general/clc_aa_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_alert_policy_module.html" "$1/collections/community/general/clc_alert_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_blueprint_package_module.html" "$1/collections/community/general/clc_blueprint_package_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_firewall_policy_module.html" "$1/collections/community/general/clc_firewall_policy_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_group_module.html" "$1/collections/community/general/clc_group_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_loadbalancer_module.html" "$1/collections/community/general/clc_loadbalancer_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_modify_server_module.html" "$1/collections/community/general/clc_modify_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_publicip_module.html" "$1/collections/community/general/clc_publicip_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_server_module.html" "$1/collections/community/general/clc_server_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/clc_server_snapshot_module.html" "$1/collections/community/general/clc_server_snapshot_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/cli_command_module.html" "$1/collections/ansible/netcommon/cli_command_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/cli_config_module.html" "$1/collections/ansible/netcommon/cli_config_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/cloud_init_data_facts_module.html" "$1/collections/community/general/cloud_init_data_facts_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/cloudflare_dns_module.html" "$1/collections/community/general/cloudflare_dns_module.html"
RedirectMatch "^(/ansible/[^/]+)/modules/cloudformation_module.html" "$1/collections/amazon/aws/cloudformation_module.html"