Cant get permalinks to work w/o index.php
-
So I have read countless threads on this, I have actually had this working twice and somehow the darn thing just stops and can’t explain why. I am fairly new to wordpress so maybe its just me
Question:
How in the world do I get wordpress to work without having to use index.php? My Goal is to use /%postname%/ w/o the index.php in front of it.
This is in httpd.conf
<Directory />
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>my .htaccess file
# 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
exact location of WP /var/www/html V3.8………….Help…….
- The topic ‘Cant get permalinks to work w/o index.php’ is closed to new replies.