diff --git a/docs/api/actions.md b/docs/api/actions.md
index 934ace4ec80408347cfd1468af83a2b85a2edf10..74a050f24adb262972985063dd489a35f4d22e35 100644
--- a/docs/api/actions.md
+++ b/docs/api/actions.md
@@ -42,7 +42,7 @@ Fetch entity metadata, i.e. the list of fields supported by the entity
 ## getlist
 
 Used for autocomplete lookups by the
-[entityRef](https://wiki.civicrm.org/confluence/display/CRMDOC/EntityRef+Fields) widget
+[entityRef](/framework/quickform/entityref.md) widget
 
 ## getoptions
 
diff --git a/docs/api/custom-data.md b/docs/api/custom-data.md
index c5ec0072f00f03d43510f75ab02c3d3230991e6d..3c9cb483cf61649cde5a573503c84f0a97b75487 100644
--- a/docs/api/custom-data.md
+++ b/docs/api/custom-data.md
@@ -28,7 +28,7 @@ $params['return'] = 'custom_N,custom_O,custom_P';
 
 For setting custom date fields, (ie CustomValue create), date format is `YmdHis`, for example: `20050425000000`.
 
-This is just a brief introduction; each API may have different requirements and allow different formats for accessing the custom data. See the [API function documentation](https://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API) and also read the comments and documentation in each API php file (under civicrm/CRM/api/v3 in your CiviCRM installation) for exact details,
+This is just a brief introduction; each API may have different requirements and allow different formats for accessing the custom data. See the [API function documentation](/api/index.md) and also read the comments and documentation in each API php file (under civicrm/CRM/api/v3 in your CiviCRM installation) for exact details,
 which vary for each API entity and function.
 
 ## Custom Value get
diff --git a/docs/api/index.md b/docs/api/index.md
index a3c8d15af3e0eca0ed8683f9cced54c7cd1bec04..22cf6eb5f2e3811b1a0af8f779368fe26989766e 100644
--- a/docs/api/index.md
+++ b/docs/api/index.md
@@ -49,4 +49,4 @@ From the API explorer, you can click on the **Examples** tab to find examples of
 ## Changelog
 
 All important changes made to the API are be recorded on the wiki at:
-[API changes](https://wiki.civicrm.org/confluence/display/CRMDOC/API+changes)
+[API changes](/api/changes.md)
diff --git a/docs/api/interfaces.md b/docs/api/interfaces.md
index b3d04f3f807a0f4157561a6cfe4ac54b4a49c7cd..59be433df6dc4360acada7cb7f84a60dab698bad 100644
--- a/docs/api/interfaces.md
+++ b/docs/api/interfaces.md
@@ -71,7 +71,7 @@ The recommended AJAX interface has changed between CiviCRM versions as follows:
 * version 4.3.x - `CRM.api(...)`
 * version 4.4.x onwards - `CRM.api3()`
 
-For details see [API changes](https://wiki.civicrm.org/confluence/display/CRMDOC/API+changes).
+For details see [API changes](/api/changes.md).
 
 ### crmAPI (AngularJS) {:#angularjs}
 
diff --git a/docs/standards/javascript.md b/docs/standards/javascript.md
index cab422205c255d3b92beb718b3b62386f3b83f04..27cd209400132c8f5f988d2b5518526ac28fea1c 100644
--- a/docs/standards/javascript.md
+++ b/docs/standards/javascript.md
@@ -75,7 +75,7 @@ You can also use CRM_Core_Resources to add in inline scripts such as the followi
 CRM_Core_Resources::singleton()->addScript('alert("hello");');
 ```
 
-You can also specify other regions of the page to place the script in (the most common reason for this is because jQuery plugins must be added to the "html-header" region). See [Resource Reference](https://wiki.civicrm.org/confluence/display/CRMDOC/Resource+Reference) for more details.
+You can also specify other regions of the page to place the script in (the most common reason for this is because jQuery plugins must be added to the "html-header" region). See [Resource Reference](/framework/resources.md) for more details.
 
 ## Using CiviCRM Javascript in non CiviCRM pages
 
@@ -121,7 +121,7 @@ If the current user has sufficient permissions (usually "Access CiviCRM") then y
 ```javascript
 CRM.api('entity', 'action', {params}, {success: function});
 ```
-For more details, see [AJAX API](http://wiki.civicrm.org/confluence/display/CRMDOC43/AJAX+Interface) docs.
+For more details, see [AJAX API](/api/interfaces.md#ajax-interface) docs.
 
 ## Server-Side Variables