Godaddy
PermalinkAll my projects in Godaddy were working fine untill this morning, they stopped work, does anyone have the same issue?
For example:http://www.innluanda.com/ it should be redirect tohttp://www.innluanda.com/index.php/pt/... and it is redirecting tohttp://www.innluanda.com/innluanda.com/index.php/pt/,... basically it's putting the folder that is installed in everything.
The Godaddy support doesn't reply to my issues :(
http://www.innluanda.com/innluanda.com/index.php/pt/...
And it says:
No input file specified.
Sounds like something is wrong here for sure.
As I say, this is an old account that I rarely touch but I read some recent forum posts about it and so I tried my account.
Damn you GoDaddy!!!
The following contents of the .htaccess file resolved the problem for me. I'm not sure this could apply to GoDaddy too, so keep a backup of your .htaccess files...
1. If concrete5 is under a sub-folder called SUBFOLDER of the root:
Place this .htaccess in the /SUBFOLDER folder (replace SUBFOLDER with your folder name)
RewriteEngine On Options -Multiviews RewriteRule ^index.php/(.*) /SUBFOLDER/index.php [nocase,last] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}/index.php !-f RewriteCond %{REQUEST_FILENAME}/index.html !-f RewriteRule ^(.+) index.php [last]
2. If concrete5 is in the root of the web server
Place this .htaccess in the root folder
RewriteEngine On Options -Multiviews RewriteRule ^index.php/(.*) /index.php [nocase,last] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}/index.php !-f RewriteCond %{REQUEST_FILENAME}/index.html !-f RewriteRule ^(.+) index.php [last]
To regain access to your site, delete the contents from your .htaccess file or rename it.
Next access your dashboard here
http://www.innluanda.com/index.php/dashboard...
Last disable pretty urls
Dashboard > System & Settings > Pretty URLs
Godaddy has made changes to the server you are on and your .htaccess code is no longer working.
Contact them and ask them for then new correct .htaccess code.