From 6cc5a559f1df9aee6c7c04d21924d9ed051d651e Mon Sep 17 00:00:00 2001 From: B Vikas Chandra <48272577+vikaschandrab@users.noreply.github.com> Date: Sun, 11 Jan 2026 16:12:18 +0530 Subject: [PATCH] Added new url --- app/Http/Controllers/ProfilePageController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Http/Controllers/ProfilePageController.php b/app/Http/Controllers/ProfilePageController.php index 1fc594a..9ae4de0 100644 --- a/app/Http/Controllers/ProfilePageController.php +++ b/app/Http/Controllers/ProfilePageController.php @@ -22,6 +22,10 @@ public function __construct(BlogService $blogService) public function show($slug) { + if ($slug === 'www.meetmytech.com') { + return redirect()->to('https://meetmytech.com', 301); + } + $UserDetails = User::with(['SiteSettings', 'userActivity', 'detail', 'userProfessionalSkills']) ->where('slug', $slug) ->first();