make url – Email shop Community https://theemailshop.co.uk/community Wed, 04 Dec 2019 05:26:41 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.3 How to make a user-friendly URL by using .HTAccess https://theemailshop.co.uk/community/knowledge-base/how-to-make-a-user-friendly-url-by-using-htaccess-2/ Wed, 04 Dec 2019 05:26:41 +0000 https://theemailshop.co.uk/forum/?post_type=epkb_post_type_1&p=1120 If your site has some long URL like example.com/files/folder/sitemap.html, it’s possible to make it into “example.com/sitemap” in .htaccess

you can simply change this line according to your requirements and then add the code to .htaccess file.

RewriteEngine on
RewriteRule ^sitemap/$   /files/folder/sitemap.html [L]

]]>