• Resolved juliom

    (@juliom)


    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…….

Viewing 1 replies (of 1 total)
  • Thread Starter juliom

    (@juliom)

    Fixed.

    The .htaccess file is correct. the httpd file the word “All” has to be lower case. Also had to go and change all the AllowOverride None within httpd.conf file to “all” with a lower case “a”.

    <Directory />
    Options FollowSymLinks
    AllowOverride all
    Order allow,deny
    Allow from all
    </Directory>

Viewing 1 replies (of 1 total)
  • The topic ‘Cant get permalinks to work w/o index.php’ is closed to new replies.