Pytanie : problem z mój .htaccess kartoteka

Cześć Ekspert,

On the serwer mój dostawca I've dostać public_html z w ono:
production (falcówka)
test (falcówka)
beta (falcówka)
.htaccess (kartoteka)

My .htaccess dołączać ten poczta. I ono pracować właśnie świetnie dla the produkcja redirection. Ono redirects the www.mysite.nl the produkcja folder.

But the próbny falcówka I robić próbny domena dzwonić http://test.mysite.nl i ono musieć the próbny falcówka w mój public_html falcówka. Ale ponieważ I stawiać the .htaccess kartoteka na miejscu kartoteka pracować już nie.

My pytanie:  Móc the .htaccess kartoteka? I co musieć zmieniać?

Thanks
(1):
2:
3:
4:
5:
6:
7:
8:
9:
Options +FollowSymLinks
RewriteEngine Dalej
RewriteBase/ 
RewriteCond % {REQUEST_URI}! (\. |/$) 
RewriteRule (. *) http://www.mysite.nl/$1/ [R=301, L] 
RewriteCond % {HTTP_HOST} ^mysite.nl$ 
RewriteRule ^/? (. *) $ http://www.mysite.nl/$1 [R=301, L] 
RewriteCond % {REQUEST_URI}! ^/production
RewriteRule ^ (. *) $ production/$1 [L]

Odpowiedź : problem z mój .htaccess kartoteka

Ty móc właśnie the 3 reguła gdy the HTTP_HOST być test.mysite.nl e.g.

RewriteEngine Dalej
RewriteBase/
#
# The następujący "3" reguła stosować test.mysite.nl
RewriteCond % {HTTP_HOST} test.mysite.nl
RewriteRule. * - [S=3]
#
RewriteCond % {REQUEST_URI}! (\. |/$)
RewriteRule (. *) http://www.mysite.nl/$1/ [R=301, L]
#
RewriteCond % {HTTP_HOST} ^mysite.nl$
RewriteRule ^/? (. *) $ http://www.mysite.nl/$1 [R=301, L]
#
RewriteCond % {REQUEST_URI}! ^/production
RewriteRule ^ (. *) $ production/$1 [L]
Inne rozwiązania  
 
programming4us programming4us