Improves navigation back & forth to File Upload page
diff --git a/source/core-developers/file-upload-interceptor.md b/source/core-developers/file-upload-interceptor.md
index 28427e2..b5799c1 100644
--- a/source/core-developers/file-upload-interceptor.md
+++ b/source/core-developers/file-upload-interceptor.md
@@ -8,7 +8,7 @@
 
 # File Upload Interceptor
 
-> Since Struts 6.4.0 this interceptor is deprecated, please use Action FileUpload Interceptor instead!
+> Since Struts 6.4.0 this interceptor is deprecated, please use [Action File Upload Interceptor](action-file-upload-interceptor) instead!
 
 See [this page](file-upload) for more examples and advanced configuration.
 
diff --git a/source/core-developers/file-upload.md b/source/core-developers/file-upload.md
index dee678e..054464f 100644
--- a/source/core-developers/file-upload.md
+++ b/source/core-developers/file-upload.md
@@ -1,9 +1,9 @@
 ---
-layout: core-developers
+layout: default
 title: File Upload
 parent:
-  title: Core Developers Guide
-  url: index
+  title: Action File Upload Interceptor
+  url: action-file-upload-interceptor
 ---
 
 # File Upload
@@ -24,7 +24,7 @@
 The Struts 2 framework leverages the Commons FileUpload library as a based library to support file upload in the framework.
 The library is included in a base Struts 2 distribution.
 
-> NOTE: Since Struts 6.4.0 the `FileUploadInterceptor` is deprecated and you should use `ActionFileUploadInterceptor` instead!
+> NOTE: Since Struts 6.4.0 the `FileUploadInterceptor` is deprecated, and you should use `ActionFileUploadInterceptor` instead!
 
 ## Basic Usage