marketingkoru1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 from /feed, /amp, /trackback, and /pageThanks 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?
Thanks Mike.
The Thank you Page is published as private page. Do you think that will make a difference in why the system thinks the page doesn’t exist?
I want to ensure no one can access the Thank You without completing the form first.
Cheers – Bennett
- This reply was modified 7 years, 3 months ago by marketingkoru1.