• I am new to wordpress.
    Permalink Settings->Default setting is working fine for new pages. But post name option does not work. I got the following errors

    “Not Found

    The requested URL/wordpress/new-page/ was not found on this server.”

    I am running apache on my laptop in localhost environment.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Is the AllowOverwrite is set to All on your configuration?/
    https://httpd.apache.org/docs/2.2/mod/core.html#allowoverride

    Thread Starter caobo

    (@caobo)

    @the Grey Parrots Yes, I have

    <Directory />
    #Options FollowSymLinks
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order deny,allow
    Deny from all
    </Directory>

    # It can be “All”, “None”, or any combination of the keywords:
    # Options FileInfo AuthConfig Limit
    #
    AllowOverride All

    <Directory “/Library/WebServer/CGI-Executables”>
    AllowOverride All
    Options None
    Order allow,deny
    Allow from all
    </Directory>

    <Directory “/Users/$USER/Sites/”>
    Options Indexes MultiViews
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>

    Thread Starter caobo

    (@caobo)

    I use the /index.php/%postname%/ format fix the issue, however the url now include /index.php/xxxx ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Permalink Settings -> Post name not working’ is closed to new replies.