Hello,
I have deluxe hosting account and Few days ago I have bought a new domain www.yashaihomes.com.
I created a addon domain and give them a path of a perticular directory such that "yashaihomes" will read index file from there.
I created and uploaded a simple index.html file but this domain is showing 500 error. Please help to sort out this
Solved! Go to Solution.
# 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>
This htaccess file solved my issue.
# 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>
This htaccess file solved my issue.