[FLINK-23172][docs] Fix broken links to the restart strategy page on the Configuration page
diff --git a/docs/layouts/shortcodes/generated/restart_strategy_configuration.html b/docs/layouts/shortcodes/generated/restart_strategy_configuration.html
index 89ad43d..cac094e 100644
--- a/docs/layouts/shortcodes/generated/restart_strategy_configuration.html
+++ b/docs/layouts/shortcodes/generated/restart_strategy_configuration.html
@@ -12,7 +12,7 @@
             <td><h5>restart-strategy</h5></td>
             <td style="word-wrap: break-word;">(none)</td>
             <td>String</td>
-            <td>Defines the restart strategy to use in case of job failures.<br />Accepted values are:<ul><li><code class="highlighter-rouge">none</code>, <code class="highlighter-rouge">off</code>, <code class="highlighter-rouge">disable</code>: No restart strategy.</li><li><code class="highlighter-rouge">fixeddelay</code>, <code class="highlighter-rouge">fixed-delay</code>: Fixed delay restart strategy. More details can be found <a href="../dev/task_failure_recovery.html#fixed-delay-restart-strategy">here</a>.</li><li><code class="highlighter-rouge">failurerate</code>, <code class="highlighter-rouge">failure-rate</code>: Failure rate restart strategy. More details can be found <a href="../dev/task_failure_recovery.html#failure-rate-restart-strategy">here</a>.</li><li><code class="highlighter-rouge">exponentialdelay</code>, <code class="highlighter-rouge">exponential-delay</code>: Exponential delay restart strategy. More details can be found <a href="../dev/task_failure_recovery.html#exponential-delay-restart-strategy">here</a>.</li></ul>If checkpointing is disabled, the default value is <code class="highlighter-rouge">none</code>. If checkpointing is enabled, the default value is <code class="highlighter-rouge">fixed-delay</code> with <code class="highlighter-rouge">Integer.MAX_VALUE</code> restart attempts and '<code class="highlighter-rouge">1 s</code>' delay.</td>
+            <td>Defines the restart strategy to use in case of job failures.<br />Accepted values are:<ul><li><code class="highlighter-rouge">none</code>, <code class="highlighter-rouge">off</code>, <code class="highlighter-rouge">disable</code>: No restart strategy.</li><li><code class="highlighter-rouge">fixeddelay</code>, <code class="highlighter-rouge">fixed-delay</code>: Fixed delay restart strategy. More details can be found <a href="../../ops/state/task_failure_recovery#fixed-delay-restart-strategy">here</a>.</li><li><code class="highlighter-rouge">failurerate</code>, <code class="highlighter-rouge">failure-rate</code>: Failure rate restart strategy. More details can be found <a href="../../ops/state/task_failure_recovery#failure-rate-restart-strategy">here</a>.</li><li><code class="highlighter-rouge">exponentialdelay</code>, <code class="highlighter-rouge">exponential-delay</code>: Exponential delay restart strategy. More details can be found <a href="../../ops/state/task_failure_recovery#exponential-delay-restart-strategy">here</a>.</li></ul>If checkpointing is disabled, the default value is <code class="highlighter-rouge">none</code>. If checkpointing is enabled, the default value is <code class="highlighter-rouge">fixed-delay</code> with <code class="highlighter-rouge">Integer.MAX_VALUE</code> restart attempts and '<code class="highlighter-rouge">1 s</code>' delay.</td>
         </tr>
     </tbody>
 </table>
diff --git a/flink-core/src/main/java/org/apache/flink/configuration/RestartStrategyOptions.java b/flink-core/src/main/java/org/apache/flink/configuration/RestartStrategyOptions.java
index c78511c..5e3a6d4 100644
--- a/flink-core/src/main/java/org/apache/flink/configuration/RestartStrategyOptions.java
+++ b/flink-core/src/main/java/org/apache/flink/configuration/RestartStrategyOptions.java
@@ -63,21 +63,21 @@
                                                     code("fixeddelay"),
                                                     code("fixed-delay"),
                                                     link(
-                                                            "../dev/task_failure_recovery.html#fixed-delay-restart-strategy",
+                                                            "../../ops/state/task_failure_recovery#fixed-delay-restart-strategy",
                                                             "here")),
                                             text(
                                                     "%s, %s: Failure rate restart strategy. More details can be found %s.",
                                                     code("failurerate"),
                                                     code("failure-rate"),
                                                     link(
-                                                            "../dev/task_failure_recovery.html#failure-rate-restart-strategy",
+                                                            "../../ops/state/task_failure_recovery#failure-rate-restart-strategy",
                                                             "here")),
                                             text(
                                                     "%s, %s: Exponential delay restart strategy. More details can be found %s.",
                                                     code("exponentialdelay"),
                                                     code("exponential-delay"),
                                                     link(
-                                                            "../dev/task_failure_recovery.html#exponential-delay-restart-strategy",
+                                                            "../../ops/state/task_failure_recovery#exponential-delay-restart-strategy",
                                                             "here")))
                                     .text(
                                             "If checkpointing is disabled, the default value is %s. "