• Hey y’all,

    1) I was told by my host support team that my 301’s in my .htaccess file could be slowing down my site TTFB. They suggested this plugin would help me get rid of the 301’s but still redirect old links to the proper pages.

    2) I am also hoping that using this plugin can also help with making sure that the trailing slash is added after page addresses. I believe I have it set up already, but I’m not entirely certain since I cannot find where I remember seeing ‘enforce trailing slash’ setting.

    Any insight as to how to accomplish these (or even one of them?)

    Best,
    Jon

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter gatehealing

    (@gatehealing)

    Fixed trailing slash with this added to htaccess:
    #FORCE TRAILING SLASH
    <IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_URI} /+[^\.]+$
    RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]
    </IfModule>
    #END FORCE TRAILING SLASH

Viewing 1 replies (of 1 total)
  • The topic ‘How to use this plugin instead of 301 redirects in .htaccess’ is closed to new replies.