Viewing 3 replies - 1 through 3 (of 3 total)
  • WordPress doesn’t add .php or .html at the end of url.
    The link that you have there is fine. When you changed your permalink was there a warning box that popped up saying that you needed to change your .htaccess file? If so then this step must have been forgotten. Also, depending on who your hosting with, some hosting providers just can’t do pretty permalinks. Netnation for example is shit at doing this and I find it easier to just keep the default.

    Hi,

    As you have changed then permalinks settings..You need to add this code in htaccess file of your theme

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    To display html/php in the page/post on your blog you have to add rewrite rules in htaccess file..

    Thanks,

    Shane G.

    Thread Starter cwinkler

    (@cwinkler)

    Hi:

    I tried to add this to the sites .htaccess file and it did not work, then i took a text document and added that info and called it .htaccess and put it in the custom theme folder and it’s not working. It eliminates my custom theme and still does not work. I’ll have to pay someone to fix this unless someone else can be of help.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changed Permalinks to name & site shows it not found’ is closed to new replies.