Поэтому я попробовал ниже .htaccess но у меня есть сервер openlitspeed, и он не полностью поддерживает все правила .htaccess
Код: Выделить всё
RewriteEngine on
# Ensure we rewrite only requests for the subdomain "suspend.impaktt.com"
RewriteCond %{HTTP_HOST} ^suspend\.impaktt\.com$ [NC]
# Check if the requested resource is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Redirect everything to the root of the subdomain
RewriteRule ^(.+)$ https://suspend.impaktt.com/$1 [L,R=301]
и обнаружил, что приведенное ниже ПРАВИЛО не работает
Код: Выделить всё
RewriteRule ^(.+)$ https://suspend.impaktt.com/$1 [L,R=301]
Подробнее здесь: https://stackoverflow.com/questions/783 ... eed-server