-
Notifications
You must be signed in to change notification settings - Fork 181
/
.openpublishing.redirection.json
1735 lines (1734 loc) · 73.6 KB
/
.openpublishing.redirection.json
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
{
"redirections": [
{
"source_path": "enterprise/using-microsoft-azure-active-directory-for-sharepoint-2013-authentication.md",
"redirect_url": "/office365/enterprise/microsoft-azure-architectures-for-sharepoint-2013",
"redirect_document_id": false
},
{
"source_path": "enterprise/obsolete-article.md",
"redirect_url": "/office365/enterprise/cloud-adoption-and-hybrid-solutions",
"redirect_document_id": false
},
{
"source_path": "enterprise/obsolete-bi-article.md",
"redirect_url": "/SharePoint/administration/business-intelligence-0",
"redirect_document_id": false
},
{
"source_path": "enterprise/the-microsoft-365-enterprise-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/lightweight-base-configuration-microsoft-365-enterprise",
"redirect_document_id": false
},
{
"source_path": "enterprise/mam-policies-for-your-microsoft-365-enterprise-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/enroll-ios-and-android-devices-in-your-microsoft-enterprise-365-dev-test-environ",
"redirect_document_id": false
},
{
"source_path": "enterprise/enroll-ios-and-android-devices-in-your-microsoft-enterprise-365-dev-test-environ.md",
"redirect_url": "/microsoft-365/enterprise/mam-policies-for-your-microsoft-365-enterprise-dev-test-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramyammer-features-on-mobile-devices.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagrammicrosoft-exchange-2013-platform-options.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagrammicrosoft-sharepoint-2013-platform-options.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramon-premises-ediscovery-flow.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramfeature-integration-across-microsoft-office-server-products.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagrammicrosoft-lync-2013-platform-options.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramdesign-sample-internet-sites-in-microsoft-azure-for-sharepoint.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramnetwork-integration-of-microsoft-office-server-products.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramsharepoint-server-exchange-lync-office-web-apps-the-mobile-l.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/accessible-diagramsharepoint-disaster-recovery-to-microsoft-azure.md",
"redirect_url": "/office365/enterprise/architectural-models-for-sharepoint-exchange-skype-for-business-and-lync",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-information-protection-for-gdpr.md",
"redirect_url": "/Office365/SecurityCompliance/office-365-information-protection-for-gdpr",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-info-protection-for-gdpr-overview.md",
"redirect_url": "/Office365/SecurityCompliance/office-365-info-protection-for-gdpr-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/microsoft-security-guidance-for-political-campaigns-nonprofits-and-other-agile-o.md",
"redirect_url": "/Office365/SecurityCompliance/microsoft-security-guidance-for-political-campaigns-nonprofits-and-other-agile-o",
"redirect_document_id": false
},
{
"source_path": "enterprise/search-for-and-find-personal-data.md",
"redirect_url": "/Office365/SecurityCompliance/search-for-and-find-personal-data",
"redirect_document_id": false
},
{
"source_path": "enterprise/customize-or-create-a-new-sensitive-information-type.md",
"redirect_url": "/Office365/SecurityCompliance/customize-or-create-a-new-sensitive-information-type",
"redirect_document_id": false
},
{
"source_path": "enterprise/architect-a-classification-schema-for-personal-data.md",
"redirect_url": "/Office365/SecurityCompliance/architect-a-classification-schema-for-personal-data",
"redirect_document_id": false
},
{
"source_path": "enterprise/apply-labels-to-personal-data-in-office-365.md",
"redirect_url": "/Office365/SecurityCompliance/apply-labels-to-personal-data-in-office-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/apply-protection-to-personal-data-in-office-365.md",
"redirect_url": "/Office365/SecurityCompliance/apply-protection-to-personal-data-in-office-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/monitor-for-leaks-of-personal-data.md",
"redirect_url": "/Office365/SecurityCompliance/monitor-for-leaks-of-personal-data",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-discovery-protection-reporting-in-office365-dev-test-environment.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-discovery-protection-reporting-in-office365-dev-test-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-sharepoint-server.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-for-sharepoint-server",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-exchange-server.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-for-exchange-server",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-skype-for-business-server.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-for-skype-for-business-server",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-project-server.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-for-project-server",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-office-online-server.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-for-office-online-server",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-on-premises-file-shares.md",
"redirect_url": "/Office365/SecurityCompliance/gdpr-for-on-premises-file-shares",
"redirect_document_id": false
},
{
"source_path": "enterprise/gdpr-for-office-servers.md",
"redirect_url": "/office365/securitycompliance/gdpr-for-office-servers",
"redirect_document_id": false
},
{
"source_path": "enterprise/privileged-access-management-in-office-365.md",
"redirect_url": "/office365/securitycompliance/privileged-access-management-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/create-team-sites-in-a-political-campaign-dev-test-environment.md",
"redirect_url": "/office365/securitycompliance/create-team-sites-in-a-political-campaign-dev-test-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/configure-groups-and-users-for-a-political-campaign-dev-test-environment.md",
"redirect_url": "/office365/securitycompliance/configure-groups-and-users-for-a-political-campaign-dev-test-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/secure-sharepoint-online-sites-and-files.md",
"redirect_url": "/office365/securitycompliance/secure-sharepoint-online-sites-and-files",
"redirect_document_id": false
},
{
"source_path": "enterprise/deploy-sharepoint-online-sites-for-three-tiers-of-protection.md",
"redirect_url": "/office365/securitycompliance/deploy-sharepoint-online-sites-for-three-tiers-of-protection",
"redirect_document_id": false
},
{
"source_path": "enterprise/protect-sharepoint-online-files-with-office-365-labels-and-dlp.md",
"redirect_url": "/office365/securitycompliance/protect-sharepoint-online-files-with-office-365-labels-and-dlp",
"redirect_document_id": false
},
{
"source_path": "enterprise/protect-sharepoint-online-files-with-azure-information-protection.md",
"redirect_url": "/office365/securitycompliance/protect-sharepoint-online-files-with-azure-information-protection",
"redirect_document_id": false
},
{
"source_path": "enterprise/secure-sharepoint-online-sites-in-a-dev-test-environment.md",
"redirect_url": "/office365/securitycompliance/secure-sharepoint-online-sites-in-a-dev-test-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/isolated-sharepoint-online-team-sites.md",
"redirect_url": "/office365/securitycompliance/isolated-sharepoint-online-team-sites",
"redirect_document_id": false
},
{
"source_path": "enterprise/design-an-isolated-sharepoint-online-team-site.md",
"redirect_url": "/office365/securitycompliance/design-an-isolated-sharepoint-online-team-site",
"redirect_document_id": false
},
{
"source_path": "enterprise/deploy-an-isolated-sharepoint-online-team-site.md",
"redirect_url": "/office365/securitycompliance/deploy-an-isolated-sharepoint-online-team-site",
"redirect_document_id": false
},
{
"source_path": "enterprise/manage-an-isolated-sharepoint-online-team-site.md",
"redirect_url": "/office365/securitycompliance/manage-an-isolated-sharepoint-online-team-site",
"redirect_document_id": false
},
{
"source_path": "enterprise/isolated-sharepoint-online-team-site-dev-test-environment.md",
"redirect_url": "/office365/securitycompliance/isolated-sharepoint-online-team-site-dev-test-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/microsoft-cloud-storage-for-enterprise-architects.md",
"redirect_url": "/office365/enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "enterprise/designing-storage-for-the-microsoft-cloud.md",
"redirect_url": "/office365/enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "enterprise/move-in-ready.md",
"redirect_url": "/office365/enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "enterprise/some-assembly-required.md",
"redirect_url": "/office365/enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "enterprise/manage-office-365-groups-with-powershell.md",
"redirect_url": "/office365/enterprise/powershell/manage-office-365-groups-with-powershell",
"redirect_document_id": false
},
{
"source_path": "enterprise/build-from-the-ground-up.md",
"redirect_url": "/office365/enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "enterprise/using-content-delivery-networks-with-sharepoint-online.md",
"redirect_url": "/office365/enterprise/use-office-365-cdn-with-spo",
"redirect_document_id": true
},
{
"source_path": "Enterprise/using-azure-ad-for-SharePoint-Server-authentication.md",
"redirect_url": "/azure/active-directory/saas-apps/sharepoint-on-premises-tutorial",
"redirect_document_id": false
},
{
"source_path": "Enterprise/base-configuration-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/simulated-ent-base-configuration-microsoft-365-enterprise",
"redirect_document_id": false
},
{
"source_path": "Enterprise/office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/lightweight-base-configuration-microsoft-365-enterprise",
"redirect_document_id": false
},
{
"source_path": "Enterprise/dirsync-for-your-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/password-hash-sync-m365-ent-test-environment",
"redirect_document_id": false
},
{
"source_path": "Enterprise/multi-factor-authentication-for-your-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/multi-factor-authentication-microsoft-365-test-environment",
"redirect_document_id": false
},
{
"source_path": "Enterprise/federated-identity-for-your-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/enterprise/m365-enterprise-test-lab-guides#identity",
"redirect_document_id": false
},
{
"source_path": "Enterprise/advanced-threat-protection-for-your-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/security/office-365-security/office-365-atp",
"redirect_document_id": false
},
{
"source_path": "Enterprise/simulated-cross-premises-virtual-network-in-azure.md.md",
"redirect_url": "/microsoft-365/enterprise/simulated-cross-premises-microsoft-365-enterprise",
"redirect_document_id": false
},
{
"source_path": "Enterprise/advanced-ediscovery-for-your-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/compliance/office-365-advanced-ediscovery",
"redirect_document_id": false
},
{
"source_path": "Enterprise/sensitive-file-protection-in-the-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/compliance/sensitivity-labels",
"redirect_document_id": false
},
{
"source_path": "Enterprise/data-classification-and-labeling-in-the-office-365-dev-test-environment.md",
"redirect_url": "/microsoft-365/compliance/protect-information",
"redirect_document_id": false
},
{
"source_path": "Enterprise/simulated-cross-premises-virtual-network-in-azure.md",
"redirect_url": "/microsoft-365/enterprise/simulated-cross-premises-microsoft-365-enterprise",
"redirect_document_id": false
},
{
"source_path": "Enterprise/microsoft-cloud-networking-for-enterprise-architects.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/evolving-your-network-for-cloud-connectivity.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/common-elements-of-microsoft-cloud-connectivity.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/expressroute-for-microsoft-cloud-connectivity.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/designing-networking-for-microsoft-saas.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/designing-networking-for-microsoft-azure-paas.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/designing-networking-for-microsoft-azure-iaas.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/microsoft-hybrid-cloud-for-enterprise-architects.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/hybrid-cloud-overview.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/architecture-of-microsoft-hybrid-cloud-scenarios.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/hybrid-cloud-scenarios-for-microsoft-saas-office-365.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/hybrid-cloud-scenarios-for-azure-paas.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "Enterprise/hybrid-cloud-scenarios-for-azure-iaas.md",
"redirect_url": "/Office365/Enterprise/microsoft-cloud-it-architecture-resources",
"redirect_document_id": false
},
{
"source_path": "enterprise/microsoft-365-guest-settings.md",
"redirect_url": "/microsoft-365/solutions/microsoft-365-guest-settings",
"redirect_document_id": false
},
{
"source_path": "enterprise/collaborating-with-people-outside-your-organization.md",
"redirect_url": "/microsoft-365/solutions/collaborate-with-people-outside-your-organization",
"redirect_document_id": false
},
{
"source_path": "enterprise/collaborate-on-documents.md",
"redirect_url": "/microsoft-365/solutions/collaborate-on-documents",
"redirect_document_id": false
},
{
"source_path": "enterprise/collaborate-in-a-site.md",
"redirect_url": "/microsoft-365/solutions/collaborate-in-site",
"redirect_document_id": false
},
{
"source_path": "enterprise/collaborate-as-a-team.md",
"redirect_url": "/microsoft-365/solutions/collaborate-as-team",
"redirect_document_id": false
},
{
"source_path": "enterprise/best-practices-anonymous-sharing.md",
"redirect_url": "/microsoft-365/solutions/best-practices-anonymous-sharing",
"redirect_document_id": false
},
{
"source_path": "enterprise/sharing-limit-accidental-exposure.md",
"redirect_url": "/microsoft-365/solutions/share-limit-accidental-exposure",
"redirect_document_id": false
},
{
"source_path": "enterprise/create-a-secure-guest-sharing-environment.md",
"redirect_url": "/microsoft-365/solutions/create-secure-guest-sharing-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/b2b-extranet.md",
"redirect_url": "/microsoft-365/solutions/b2b-extranet",
"redirect_document_id": false
},
{
"source_path": "enterprise/microsoft-365-limit-sharing.md",
"redirect_url": "/microsoft-365/solutions/microsoft-365-limit-sharing",
"redirect_document_id": false
},
{
"source_path": "enterprise/deployment-advisors-for-office-365.md",
"redirect_url": "/office365/enterprise/setup-guides-for-office-365",
"redirect_document_id": true
},
{
"source_path": "enterprise/client-connectivity.md",
"redirect_url": "/office365/enterprise/office-365-networking-overview",
"redirect_document_id": true
},
{
"source_path": "enterprise/deployment-planning-checklist.md",
"redirect_url": "/office365/enterprise/setup-overview-for-enterprises",
"redirect_document_id": false
},
{
"source_path": "enterprise/test-lab-guide-configure-an-integrated-exchange-lync-and-sharepoint-test-lab.md",
"redirect_url": "/microsoft-365/enterprise/m365-enterprise-test-lab-guides",
"redirect_document_id": false
},
{
"source_path": "enterprise/enterprises-and-office-365.md",
"redirect_url": "/microsoft-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/security-solutions.md",
"redirect_url": "/microsoft-365/security",
"redirect_document_id": false
},
{
"source_path": "enterprise/automate-file-collection-for-ediscovery.md",
"redirect_url": "/microsoft-365/compliance/ediscovery",
"redirect_document_id": false
},
{
"source_path": "enterprise/cloud-app-security-for-your-office-365-dev-test-environment.md",
"redirect_url": "/office365/enterprise/cloud-adoption-test-lab-guides-tlgs",
"redirect_document_id": true
},
{
"source_path": "enterprise/powershell/manage-microsoft-teams-with-office-365-powershell.md",
"redirect_url": "/microsoftteams/teams-powershell-install",
"redirect_document_id": false
},
{
"source_path": "enterprise/powershell/manage-exchange-online-with-office-365-powershell.md",
"redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell",
"redirect_document_id": false
},
{
"source_path": "enterprise/tools-to-manage-office-365-accounts.md",
"redirect_url": "/office365/enterprise/manage-office-365-accounts",
"redirect_document_id": true
},
{
"source_path": "enterprise/manage-office-365-accounts.md",
"redirect_url": "/microsoft-365/enterprise/manage-microsoft-365-accounts",
"redirect_document_id": false
},
{
"source_path": "enterprise/prepare-directory-attributes-for-synch-with-idfix.md",
"redirect_url": "/office365/enterprise/set-up-directory-synchronization",
"redirect_document_id": true
},
{
"source_path": "enterprise/install-and-run-idfix.md",
"redirect_url": "/office365/enterprise/set-up-directory-synchronization",
"redirect_document_id": false
},
{
"source_path": "enterprise/idfix-excluded-and-supported-objects-and-attributes.md",
"redirect_url": "/office365/enterprise/set-up-directory-synchronization",
"redirect_document_id": false
},
{
"source_path": "enterprise/idfix-transaction-log.md",
"redirect_url": "/office365/enterprise/set-up-directory-synchronization",
"redirect_document_id": false
},
{
"source_path": "enterprise/set-up-directory-synchronization",
"redirect_url": "/microsoft-365/enterprise/set-up-directory-synchronization",
"redirect_document_id": true
},
{
"source_path": "enterprise/office-365-client-support-mobile-application-management.md",
"redirect_url": "/mem/intune/apps/apps-supported-intune-apps",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-networking-overview.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-networking-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-network-connectivity-principles.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-network-connectivity-principles",
"redirect_document_id": false
},
{
"source_path": "enterprise/assessing-network-connectivity.md",
"redirect_url": "/microsoft-365/enterprise/assessing-network-connectivity",
"redirect_document_id": false
},
{
"source_path": "enterprise/network-planning-with-expressroute.md",
"redirect_url": "/microsoft-365/enterprise/network-planning-with-expressroute",
"redirect_document_id": false
},
{
"source_path": "enterprise/plan-for-network-devices.md",
"redirect_url": "/microsoft-365/enterprise/plan-for-network-devices",
"redirect_document_id": false
},
{
"source_path": "enterprise/network-and-migration-planning.md",
"redirect_url": "/microsoft-365/enterprise/network-and-migration-planning",
"redirect_document_id": false
},
{
"source_path": "enterprise/set-up-network-for-office-365.md",
"redirect_url": "/microsoft-365/enterprise/set-up-network-for-microsoft-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-ip-web-service.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-ip-web-service",
"redirect_document_id": false
},
{
"source_path": "enterprise/use-office-365-cdn-with-spo.md",
"redirect_url": "/microsoft-365/enterprise/use-microsoft-365-cdn-with-spo",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-vpn-split-tunnel.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-vpn-split-tunnel",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-vpn-implement-split-tunnel.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-vpn-implement-split-tunnel",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-networking-china.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-networking-china",
"redirect_document_id": false
},
{
"source_path": "enterprise/azure-expressroute.md",
"redirect_url": "/microsoft-365/enterprise/azure-expressroute",
"redirect_document_id": false
},
{
"source_path": "enterprise/routing-with-expressroute.md",
"redirect_url": "/microsoft-365/enterprise/routing-with-expressroute",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-endpoints.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-endpoints",
"redirect_document_id": false
},
{
"source_path": "enterprise/urls-and-ip-address-ranges.md",
"redirect_url": "/microsoft-365/enterprise/urls-and-ip-address-ranges",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-u-s-government-dod-endpoints.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-u-s-government-dod-endpoints",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-u-s-government-gcc-high-endpoints.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-u-s-government-gcc-high-endpoints",
"redirect_document_id": false
},
{
"source_path": "enterprise/urls-and-ip-address-ranges-21vianet.md",
"redirect_url": "/microsoft-365/enterprise/urls-and-ip-address-ranges-21vianet",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-germany-endpoints.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-germany-endpoints",
"redirect_document_id": false
},
{
"source_path": "enterprise/content-delivery-networks.md",
"redirect_url": "/microsoft-365/enterprise/content-delivery-networks",
"redirect_document_id": false
},
{
"source_path": "enterprise/ipv6-support.md",
"redirect_url": "/microsoft-365/enterprise/ipv6-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/nat-support-with-office-365.md",
"redirect_url": "/microsoft-365/enterprise/nat-support-with-microsoft-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/network-requests-in-office-2016-for-mac.md",
"redirect_url": "/microsoft-365/enterprise/network-requests-in-office-2016-for-mac",
"redirect_document_id": false
},
{
"source_path": "enterprise/network-planning-and-performance.md",
"redirect_url": "/microsoft-365/enterprise/network-planning-and-performance",
"redirect_document_id": false
},
{
"source_path": "enterprise/monitor-connectivity.md",
"redirect_url": "/microsoft-365/enterprise/monitor-connectivity",
"redirect_document_id": false
},
{
"source_path": "enterprise/managing-expressroute-for-connectivity.md",
"redirect_url": "/microsoft-365/enterprise/managing-expressroute-for-connectivity",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-networking-partner-program.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-networking-partner-program",
"redirect_document_id": false
},
{
"source_path": "enterprise/subscriptions-licenses-accounts-and-tenants-for-microsoft-cloud-offerings.md",
"redirect_url": "/microsoft-365/enterprise/subscriptions-licenses-accounts-and-tenants-for-microsoft-cloud-offerings",
"redirect_document_id": false
},
{
"source_path": "enterprise/plan-for-third-party-ssl-certificates.md",
"redirect_url": "/microsoft-365/enterprise/plan-for-third-party-ssl-certificates",
"redirect_document_id": false
},
{
"source_path": "enterprise/setup-guides-for-office-365.md",
"redirect_url": "/microsoft-365/enterprise/setup-guides-for-microsoft-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/integrated-apps-and-azure-ads.md",
"redirect_url": "/microsoft-365/enterprise/integrated-apps-and-azure-ads",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-integration.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-integration",
"redirect_document_id": false
},
{
"source_path": "enterprise/azure-integration.md",
"redirect_url": "/microsoft-365/enterprise/azure-integration",
"redirect_document_id": false
},
{
"source_path": "enterprise/modern-auth-for-office-2013-and-2016.md",
"redirect_url": "/microsoft-365/enterprise/modern-auth-for-office-2013-and-2016",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-inter-tenant-collaboration.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-inter-tenant-collaboration",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-client-support-certificate-based-authentication.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-client-support-certificate-based-authentication",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-client-support-conditional-access.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-client-support-conditional-access",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-client-support-modern-authentication.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-client-support-modern-authentication",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-client-support-single-sign-on.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-client-support-single-sign-on",
"redirect_document_id": false
},
{
"source_path": "enterprise/hybrid-modern-auth-overview.md",
"redirect_url": "/microsoft-365/enterprise/hybrid-modern-auth-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/configure-exchange-server-for-hybrid-modern-authentication.md",
"redirect_url": "/microsoft-365/enterprise/configure-exchange-server-for-hybrid-modern-authentication",
"redirect_document_id": false
},
{
"source_path": "enterprise/configure-skype-for-business-for-hybrid-modern-authentication.md",
"redirect_url": "/microsoft-365/enterprise/configure-skype-for-business-for-hybrid-modern-authentication",
"redirect_document_id": false
},
{
"source_path": "enterprise/remove-or-disable-hybrid-modern-authentication-from-skype-for-business-and-excha.md",
"redirect_url": "/microsoft-365/enterprise/remove-or-disable-hybrid-modern-authentication-from-skype-for-business-and-excha",
"redirect_document_id": false
},
{
"source_path": "enterprise/plan-upgrade-previous-versions-office.md",
"redirect_url": "/microsoft-365/enterprise/plan-upgrade-previous-versions-office",
"redirect_document_id": false
},
{
"source_path": "enterprise/upgrade-from-office-2007-servers-and-products.md",
"redirect_url": "/microsoft-365/enterprise/upgrade-from-office-2007-servers-and-products",
"redirect_document_id": false
},
{
"source_path": "enterprise/exchange-2007-end-of-support.md",
"redirect_url": "/microsoft-365/enterprise/exchange-2007-end-of-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/sharepoint-2007-end-of-support.md",
"redirect_url": "/microsoft-365/enterprise/sharepoint-2007-end-of-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/pps-2007-end-of-support.md",
"redirect_url": "/microsoft-365/enterprise/pps-2007-end-of-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/project-server-2007-end-of-support.md",
"redirect_url": "/microsoft-365/enterprise/project-server-2007-end-of-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/upgrade-from-office-2010-servers-and-products.md",
"redirect_url": "/microsoft-365/enterprise/upgrade-from-office-2010-servers-and-products",
"redirect_document_id": false
},
{
"source_path": "enterprise/exchange-2010-end-of-support.md",
"redirect_url": "/microsoft-365/enterprise/exchange-2010-end-of-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/upgrade-from-sharepoint-2010.md",
"redirect_url": "/microsoft-365/enterprise/upgrade-from-sharepoint-2010",
"redirect_document_id": false
},
{
"source_path": "enterprise/project-server-2010-end-of-support.md",
"redirect_url": "/microsoft-365/enterprise/project-server-2010-end-of-support",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-tenant-isolation-overview.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-tenant-isolation-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-isolation-in-azure-active-directory.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-isolation-in-azure-active-directory",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-monitoring-and-testing.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-monitoring-and-testing",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-resource-limits.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-resource-limits",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-isolation-in-office-365.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-isolation-in-microsoft-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-isolation-in-office-365-search.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-isolation-in-microsoft-365-search",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-isolation-in-office-365-video.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-isolation-in-microsoft-365-video",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-isolation-in-graph-and-delve.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-isolation-in-graph-and-delve",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-administrative-access-controls-overview.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-administrative-access-controls-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-monitoring-and-auditing-access-controls.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-monitoring-and-auditing-access-controls",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-isolation-controls.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-isolation-controls",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-personnel-controls.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-personnel-controls",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-technology-controls.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-technology-controls",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-yammer-enterprise-access-controls.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-yammer-enterprise-access-controls",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-auditing-and-reporting-overview.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-auditing-and-reporting-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-reporting-features.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-reporting-features",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-ediscovery-and-search-features.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-ediscovery-and-search-features",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-internal-logging.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-internal-logging",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-mailbox-migrations.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-mailbox-migrations",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-management-activity-api.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-management-activity-api",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-data-resiliency-overview.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-data-resiliency-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-dealing-with-data-corruption.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-dealing-with-data-corruption",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-exchange-data-resiliency.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-exchange-data-resiliency",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-malware-and-ransomware-protection.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-malware-and-ransomware-protection",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-monitoring-and-self-healing.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-monitoring-and-self-healing",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-data-retention-deletion-and-destruction-overview.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-data-retention-deletion-and-destruction-overview",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-data-destruction.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-data-destruction",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-data-immutability.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-data-immutability",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-exchange-online-data-deletion.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-exchange-online-data-deletion",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-sharepoint-online-data-deletion.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-sharepoint-online-data-deletion",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-skype-data-deletion.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-skype-data-deletion",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-defending-against-denial-of-service-attacks.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-defending-against-denial-of-service-attacks",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-microsoft-dos-defense-strategy.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-microsoft-dos-defense-strategy",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-core-principles-of-defense-against-dos-attacks.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-core-principles-of-defense-against-dos-attacks",
"redirect_document_id": false
},
{
"source_path": "enterprise/office-365-multi-geo.md",
"redirect_url": "/microsoft-365/enterprise/microsoft-365-multi-geo",
"redirect_document_id": false
},
{
"source_path": "enterprise/multi-geo-capabilities-in-onedrive-and-sharepoint-online-in-office-365.md",
"redirect_url": "/microsoft-365/enterprise/multi-geo-capabilities-in-onedrive-and-sharepoint-online-in-microsoft-365",
"redirect_document_id": false
},
{
"source_path": "enterprise/multi-geo-capabilities-in-exchange-online.md",
"redirect_url": "/microsoft-365/enterprise/multi-geo-capabilities-in-exchange-online",
"redirect_document_id": false
},
{
"source_path": "enterprise/plan-for-multi-geo.md",
"redirect_url": "/microsoft-365/enterprise/plan-for-multi-geo",
"redirect_document_id": false
},
{
"source_path": "enterprise/administering-a-multi-geo-environment.md",
"redirect_url": "/microsoft-365/enterprise/administering-a-multi-geo-environment",
"redirect_document_id": false
},
{
"source_path": "enterprise/multi-geo-user-experience.md",