views:

86

answers:

2

I have a permalink working but as soon as I create a post it tells me that soory post not found permalink setting is to "/%pagename%/" and here is .htaccess:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /ryan/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . ryan/index.php [L]
    </IfModule>
# END WordPress
A: 

Do you have mod_rewrite installed on the server?

code_burgar
Yes I do have the only problem is that it doesn't find the post when the peramlinks is ON it always says "Sorry no post found"
kwek-kwek
A: 

Try clearing the permalink setting in wp_options in the database and then reset permalinks in Wordpress.

songdogtech