First of all, yes, I did read all other threads relating to this first
Ok, right.
My System:
WHM/Litespeed
It's al installed, working fine and very fast, no problems there. The issue is that I'm not able to have both a .htaccess pwd and the wordpress rewrite working at the same time :s
Either rule works perfectly alone, but when they're in the (same oc) .htaccess file together it just loads the naked php (with no css/js/imgs) and none of the links work. Nor does it ask for a password.
Both work perfectly alone.
Here's my .htaccess file, mabe it's incorrect, I know my way around a server but I'm hardly an expert.
Thanks
Ok, right.
My System:
WHM/Litespeed
It's al installed, working fine and very fast, no problems there. The issue is that I'm not able to have both a .htaccess pwd and the wordpress rewrite working at the same time :s
Either rule works perfectly alone, but when they're in the (same oc) .htaccess file together it just loads the naked php (with no css/js/imgs) and none of the links work. Nor does it ask for a password.
Both work perfectly alone.
Here's my .htaccess file, mabe it's incorrect, I know my way around a server but I'm hardly an expert.
PHP:
AuthType Basic
AuthName "Woah, come back in around 48 hours"
AuthUserFile "/home/xxxxxxxxx/xxxxxxxxxxxxx/public_html/passwd"
require valid-user
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress