When you set the permalinks parameter to a different default value, the following code is already sent to the .htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /callerdb/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /callerdb/index.php [L]
</IfModule>
But this will not help, as you already know.
So, this will work if you set rewrite_module , this can be done by going to the "fix permissions" if available in your cpanel, or you can contact your host.
source
share