If you want to use permalinks in your Wordpress blog, you have to enable mod_rewrite in your .htaccess file.
To create and modify .htaccess file:
- Log on to your control panel at www.register365.com and log into the hosting plan you wish to manage.
- Click on Ftp user account on top menu bar
- Click on File manager.
- Click on Settings, at bottom right hand corner, make sure the option view hidden files is ticked.
- Click on the folder icon beside the domain name, on the right hand side you will see an option to create a htaccess file
- if this is already created, you do not need to complete anything
- if this does not exist, click on create htaccess file
- Click on the domain name folder.
- you will see a .htaccess file here
- Click on .htaccess file name and click on edit.
- Copy the code below into it:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
Note: This is not available on Windows Hosting as mod_rewrite is Apache module.

