Сообщение lancer » 2011-05-04 12:22:22
Вобщем если обращаться к корню поддомена(
http://billing.auctionhost.ru/), то при задействованном .htaccess отображает:
Not Found
The requested URL /billing/index.php was not found on this server.
т.е. добавляет billing/ почему?
Стандартный .htaccess:
Код: Выделить всё
AddDefaultCharset UTF-8
RewriteEngine On
RewriteCond %{REQUEST_URI} (.*)
RewriteRule (public|styles|index.php) - [L]
#RewriteCond %{HTTPS} !=on
#RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
RewriteRule (.*) index.php
Options -Indexes
<IfModule mod_headers.c>
<FilesMatch "\.(css|js|png)$">
Header set Cache-Control "max-age=600, proxy-revalidate"
</FilesMatch>
</IfModule>
Вобщем если обращаться к корню поддомена(http://billing.auctionhost.ru/), то при задействованном .htaccess отображает:
Not Found
The requested URL /billing/index.php was not found on this server.
т.е. добавляет billing/ почему?
Стандартный .htaccess:
[code]
AddDefaultCharset UTF-8
RewriteEngine On
RewriteCond %{REQUEST_URI} (.*)
RewriteRule (public|styles|index.php) - [L]
#RewriteCond %{HTTPS} !=on
#RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
RewriteRule (.*) index.php
Options -Indexes
<IfModule mod_headers.c>
<FilesMatch "\.(css|js|png)$">
Header set Cache-Control "max-age=600, proxy-revalidate"
</FilesMatch>
</IfModule>
[/code]