Configure Ispconfig to run wordpress site without .htaccess

Discussion in 'Installation/Configuration' started by miguelpinheiro, Mar 17, 2016.

  1. Hi!
    I'm trying to run wordpress with pretty urls without using .htaccess for performance reasons.

    So, in "site options" tab I set Apache AllowOverride to "None".

    Then, in Apache Directives I added the original wordpress .htaccess content:

    Code:
    # 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
    Doing this didn't work because the RewriteBase directive context is just for directory and .htaccess.

    Is there a proper anyway of accomplish this with ISPConfig 3? By the way, I'm using Apache 2.4.
    Thanks. regards.

    Miguel
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Wrap the directives that you copied from the .htaccess file into a directory directive and then paste it inti the apache directives field.
     
    miguelpinheiro likes this.
  3. It worked like a charm! Thanks till.
     

Share This Page