Просмотр поста

.
step
Может комуто будеть интересно. Етот ответ из суппорта джасхост. Ответ с проблемами хтаджесс.

Sir,

There is nothing wrong with .htaccess support.
It looks like your .htaccess configuration does not meet our server requirements and settings.
JustHost does not use PHP as Apache module.
We use suPHP instead.
This requires all PHP directives to be placed into custom "php.ini" file.
Which is why you must exclude all "php_values" and "php_flags" from .htaccess file and add corresponding codes into php.ini.
Please note, php.ini syntax differs from .htaccess!
For example if you removed these lines from .htaccess:

php_flag display_errors 0
php_value error_reporting 7
php_value register_globals 0
php_flag session.use_trans_sid off
php_value magic_quotes_gpc 0
php_value magic_quotes_runtime 0
php_value magic_quotes_sybase 0
php_value allow_url_fopen 0

you must add these ones into php.ini

display_errors = 0
error_reporting = 7
register_globals = 0
session.use_trans_sid = off
magic_quotes_gpc = 0
magic_quotes_runtime = 0
magic_quotes_sybase = 0
allow_url_fopen = 0


All "AddType" and "Rewrite" lines should stay in .htaccess file.

Hope this helps.