I'm always having 404 error message

doneplumbers.42web.io

Error Message

I created a post some days ago explaining the 404 error I get with all the pages of the website except the homepage. I was directed to create a .htaccess file in the file manager but on doing that several times I’m prompted with the error shown in the attachment below. I want to ask if there’s a video tutorial in resolving this specific issue. This is because when I complained that time I was told to create it in the htdocs folder but that folder does have option of creating a file inside it, i may be wring but I need a comprehensive video assistance. Thanks.

Other Information

You’ll have to create the .htaccess file inside the htdocs folder, not in the root folder. There is no need for a video tutorial for that as this step can be done with ease; after that you’ll have to edit the file you created inside the htdocs folder with the WordPress default .htaccess which is this one:

# BEGIN WordPress

<IfModule mod_rewrite.c>
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]
</IfModule>

# END WordPress
3 Likes

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