• I have been noticing a swell in 404s as a result of my URLs being appended with the following extensions:

    /feed/
    /amp/
    /page/
    /trackback/

    Should I worry about these 404s from an SEO perspective”

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Have you tried regenerating htaccess by going into Settings->Permalinks and just hitting “save”?

    Thread Starter marketingkoru1

    (@marketingkoru1)

    Thanks Daniel for the recommendation.

    We use Yoast SEO.

    And this is what our ataccess file looks like:

    ## EXPIRES CACHING ##
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/jpg “access 1 year”
    ExpiresByType image/jpeg “access 1 year”
    ExpiresByType image/gif “access 1 year”
    ExpiresByType image/png “access 1 year”
    ExpiresByType text/css “access 1 month”
    ExpiresByType text/html “access 1 month”
    ExpiresByType application/pdf “access 1 month”
    ExpiresByType text/x-javascript “access 1 month”
    ExpiresByType application/x-shockwave-flash “access 1 month”
    ExpiresByType image/x-icon “access 1 year”
    ExpiresDefault “access 1 month”
    </IfModule>
    ## EXPIRES CACHING ##

    # 1 Month for most static assets
    <filesMatch “.(css|jpg|jpeg|png|gif|js|ico)$”>
    Header set Cache-Control “max-age=2592000, public”
    </filesMatch>

    # 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
    # BEGIN EWWWIO

    # END EWWWIO

    Do you see anything disturbing or outdated?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘404 from /feed, /amp, /trackback, and /page’ is closed to new replies.