• Resolved Easwood

    (@easwood)


    Hey,

    I searched through the forums and I wasn’t able to find any resolutions that helped me.

    I’m receiving a 404 error with my Go Daddy hosting whenever my permalinks are saved to anything but default.

    Any insight as to what may cause this would be greatly appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Site URL?

    As long as I can remember, GD .htaccess needs to add

    AddHandler x-httpd-php5 .php
    AddHandler x-httpd-php .php4

    in other words:

    AddHandler x-httpd-php5 .php
    AddHandler x-httpd-php .php4
    # 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
    Thread Starter Easwood

    (@easwood)

    @bottleneck that did the trick. Thank you so much!

    You are welcome.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Permalink – 404 Error – GoDaddy’ is closed to new replies.