Со вчерашнего дня мой сайт внезапно упал, и веб-мастер Google показывает 100% ошибок DNS. Мое приложение http://core-ahang2mail.rhcloud.com
Я не знаю, что мне делать. Не могли бы вы мне помочь?
Наконец, я переименовал htaccess (как сказал @MichaelHampton), и моя проблема решена, но теперь мои перенаправления не работают, не могли бы вы помочь мне решить проблему htaccess?
# Necessary to prevent problems when using a controller named "index" and having a root index.php
# more here: http://stackoverflow.com/q/20918746/1114320
Options -MultiViews
# turn rewriting on
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
# When using the script within a sub-folder, put this path here, like /mysubfolder/
# If your app is in the root of your web folder, then please delete this line or comment it out
# RewriteBase /php-login/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
RewriteRule ^index\.php/(.*) $1 [NS,NC,L,R=301]