Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #39866


Ignore:
Timestamp:
02/13/2017 08:55:25 PM (9 years ago)
Author:
swissspidy
Comment:

Hey there,

By default WordPress really only creates these .htaccess rules.

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

Anything else is not standard WordPress stuff. In your example, like ExpiresByType or RewriteRule ^(.*)$ /wp-content/endurance-page-cache/$1/_index.html [L] is caused by plugins. Most likely by the endurance-page-cache plugin, which appears to be one installed on BlueHost, see https://github.com/bluehost/endurance-page-cache.

In this case, I suggest you to talk to your host about it.

In the future, the WordPress.org support forums at wordpress.org/support are better suited for questions like these.

Cheers!

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #39866

    • Property Component GeneralRewrite Rules
    • Property Focuses accessibility removed
    • Property Milestone Awaiting Review
    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #39866 – Description

    v1 v2  
    3737
    3838# END WordPress
     39}}}
    3940
    40 ======================
    41 The fix is only use
    42 =======================
     41The fix is to only use:
     42
     43{{{
    4344# BEGIN WordPress
    4445<IfModule mod_rewrite.c>