Moveing to a StormOnDemand webserver.  Uses cPanel.  I’m freindly with a Plesk cp and the cPanel is a bit of a change for me. Nice to stretch but wow lots to consider.

1st note:

WordPress permalinks .htaccess mess up the ability to have .htaccess files in other directories. Good head ache this.  The solution for now isnot much different from the wordpress derivative. but it appears to work.

WordPress verision:

# 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

Modified version:

# BEGIN WordPress

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteRule ^index\.php$ – [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|#.*|\?.*|/[^.]*)$  [NC]
RewriteRule ^(.*) /index.php [L]
</IfModule>

# END WordPress

So whats the diff? Hmmm…

 

Leave a Reply