WordPress rewrite error

WordPress rewrite permissions

Generally, when we try to open a page on our WordPress website and we get an error, it is because our WordPress does not have rewriting permissions in the main directory of our website.

We can easily solve this problem by creating a .htaccess file in the main directory of our website and adding the following .htaccess statement.

# 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
If you have any questions, please feel free to contact Picaraza Domains Ltd support team 24/7/365.
Was this answer helpful?

Related Articles

Ruby on Rails

Ruby on Rails is a free web application framework for the Ruby programming language. It is often...

Connect remotely to MySQL database

Remote MySQL connection is disabled on our shared servers due to security reasons, but you can...

Check the number of inodes in cPanel

An inode is the abbreviation for index node. In Unix-based file systems, an inode is considered a...

how many CPU resources I'm using?

All of our shared hosting servers are equipped with the Cloudlinux operating system at this time,...

How to upload the content for addon domain

You have to upload the files for an addon domain to its directory. When you create a new addon...