Posted - 06/26/2018 : 18:38:46
Hi Will, I presume your client wants to tell customers to visit the short and simple URL (2) which will then instantly redirect to actual location, long URL (1). Here is the .htaccess entry to accomplish that: # ==================================== # URL Redirects # ==================================== redirect 301 /clientarea.php https:// domainname.co.uk/secure/billing/clientarea.phpOr you can simplify the short URL even further. # ==================================== # URL Redirects # ==================================== redirect 301 /clients https:// domainname.co.uk/secure/billing/clientarea.phpRemove the space I added after https:// I put all redirect 301 entries near end of the .htaccess file. Presume in the <head> of clientarea.php you have this entry: <meta name="robots" content="noindex, nofollow">Gary
Edited by - ITZAP on 06/26/2018 18:52:06
|