djeraseit/debian-server-tools/master/webserver/apache-conf-available/worpress-htaccess/site/wp-includes-js-tinymce/.htaccess - Htaccess File

djeraseit/debian-server-tools/master/webserver/apache-conf-available/worpress-htaccess/site/wp-includes--js--tinymce/.htaccess

# Whitelist wp-mce-help.php and wp-tinymce.php
<Files wp-mce-help.php>
    # Apache < 2.3
    <IfModule !mod_authz_core.c>
        Order Deny,Allow
        Allow from all
        Satisfy All
    </IfModule>
    # Apache ≥ 2.3
    <IfModule mod_authz_core.c>
        Require all granted
    </IfModule>
</Files>
<Files wp-tinymce.php>
    # Apache < 2.3
    <IfModule !mod_authz_core.c>
        Order Deny,Allow
        Allow from all
        Satisfy All
    </IfModule>
    # Apache ≥ 2.3
    <IfModule mod_authz_core.c>
        Require all granted
    </IfModule>
</Files>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache