diff --git a/modules/gui/macosx/menus/VLCMainMenu.m b/modules/gui/macosx/menus/VLCMainMenu.m
index 8f0bafcc420ae48f070bc499e615c87ec4574877..0614248d7dc9f28e2b988ec97e5972f1a6e0aba6 100644
--- a/modules/gui/macosx/menus/VLCMainMenu.m
+++ b/modules/gui/macosx/menus/VLCMainMenu.m
@@ -1430,28 +1430,28 @@ typedef NS_ENUM(NSInteger, VLCObjectType) {
 
 - (IBAction)openDocumentation:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/doc/"];
+    NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/doc/"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
 
 - (IBAction)openWebsite:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/"];
+    NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
 
 - (IBAction)openForum:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://forum.videolan.org/"];
+    NSURL *url = [NSURL URLWithString: @"https://forum.videolan.org/"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
 
 - (IBAction)openDonate:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
+    NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/contribute.html#paypal"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
diff --git a/modules/gui/macosx/windows/VLCHelpWindowController.m b/modules/gui/macosx/windows/VLCHelpWindowController.m
index 437107e402d38474cfb75819e1752a03b0739270..fecf66d3224fd4246cca1622e84171ca74dc82da 100644
--- a/modules/gui/macosx/windows/VLCHelpWindowController.m
+++ b/modules/gui/macosx/windows/VLCHelpWindowController.m
@@ -63,7 +63,7 @@
                                _NS(I_LONGHELP)];
 
     [[helpWebView mainFrame] loadHTMLString:htmlWithStyle
-                                    baseURL:[NSURL URLWithString:@"http://videolan.org"]];
+                                    baseURL:[NSURL URLWithString:@"https://videolan.org"]];
 }
 
 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame