Installing phpLD Into The Root of Your Domain
February 4th, 2008
Filed under: Uncategorized
I ran into a snag while using a phpLD install into the root of my domains. It appears that the installation’s .htaccess file is missing a line (RewriteBase /). Here’s a complete snippit of the mod_rewrite section:
# URL rewrite rules
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
## Category redirect
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
Leave a Reply