404 Not Found

What’s the problem with my website?
The website is working, but when I click on any page, it gives me:
404 Not Found.
my website link:
www.topic.rf.gd

The links look like they should work.

Can you share a screenshot of the file structure of your site (not including the URL) as it looks like the HTML files it’s linking to might be missing

Also if your linking to a HTML or PHP file you need to include the extension in the link. If you’re linking to a directory, it needs an index.php or index.html file

@dan3008, the OP’s using WordPress, so he won’t have any actual folder/file that will make the website but WordPress’s files as the permalink handling is done by WordPress.

@Brook1, please create a .htaccess file on your domain’s htdocs folder or, if you already have it, edit it with this content:

# BEGIN WordPress

RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress
9 Likes

Oh. I missed that, my bad

3 Likes

it’s works thank you

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.