(Friendly) URL's No Longer Work?
Permalink
I have not touched my site in 2 months and today my pages are not accessible. It appears that the links have been broken somehow.
Any suggestions or information on what may have happened?
http://www.alliedsurveyingcompany.com...
Any suggestions or information on what may have happened?
http://www.alliedsurveyingcompany.com...
first login to your dashboard and disable pretty urls. That will at least make you site accessible. Then call Bluehost and ask them what changed.
Thanks guys! I disabled pretty urls and now everything works.
Of course I would like to get them working again so I will now contact Bluehost. They did tell me this morning that nothing had changed.
Of course I would like to get them working again so I will now contact Bluehost. They did tell me this morning that nothing had changed.
I would take a look at your index.php file in the document root and see if there have been any changes made to it. It should only contain
Also, the .htaccess file should at least contain
And like tallacman mentioned see if you can find out if your host changed any settings recently.
<?php require('concrete/dispatcher.php');
Also, the .htaccess file should at least contain
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule>
And like tallacman mentioned see if you can find out if your host changed any settings recently.