Viewing 1 replies (of 1 total)
  • Paste to .htaccess file on root:

    <IfModule mod_rewrite.c>
    RewriteCond %{HTTP_HOST} ^www\.yoursite\.net$ [NC]
    RewriteRule ^(.*)$ https://yoursite.net/$1 [R=301,L]
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
Viewing 1 replies (of 1 total)
  • The topic ‘How to hide page link in url.’ is closed to new replies.