How can I change my URL from showing: www.example.com/p/tools to just www.example.com/tools?
I've tried to play around with the .htaccess a little bit, but unfortunately couldn't make it work.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]
</IfModule>