• Resolved thefieldset

    (@thefieldset)


    I’m moving to the plugin after inheriting an htaccess file that already has some redirect rules in it (that aren’t working very well). Looking at another htaccess file from another WP site I see some install-specific declarations that I don’t want to just copy over. So…

    Assuming I’m starting over with the redirects, what should my htaccess file contain before I add any redirects via the plugin?

    Thanks!

    https://ww.wp.xz.cn/plugins/simple-301-redirects/

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

    (@thefieldset)

    In case others need it, I used the following and it works well:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
Viewing 1 replies (of 1 total)

The topic ‘What should base .htaccess include?’ is closed to new replies.