Hello,
I'm installing wordpress on a server that won't be able to have a htaccess file in the wordpress install directory :(
Does anyone have a translate of the htaccess directives for the apache httd.conf? I believe I already have mod_rewrite enabled.
The following is the default htaccess with permalinks enabled.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress