Moderator
t-p
(@t-p)
Is this a recent issue?
did this page work before?
Moderator
t-p
(@t-p)
Do other pages work?
Or, is this the only page you have on your site?
All the pages except home. I think it is an Apache problem possibly.
Try re-saving your permalink structure at Settings/Permalinks in your admin panel. If WordPress cannot automatically edit the .htaccess file, it will provide manual instructions after saving.
I have tried. Also, I can’t find a .htaccess file in my dir via FTP.
Check that your FTP software is configured to show all files. .htaccess files are usually hidden by default.
How can I set it to do that?
FTP: FileZilla
I have found the file anyways.
Any luck after re-saving your permalinks and editing .htaccess as directed?
I don’t know what to do to my .htaccess
When you re-save your permalinks, does WordPress say you have to edit your .htaccess file, or does it just say the changes have been saved?
Not anymore, The first time I did it it did but I ignored it and did not bother about what was happening.
Can you provide the contents of your .htaccess file here?
To do so, access your server via FTP or SFTP and open the file with a plain text editor.
Here are the contents of my .htaccess
# 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