. Htaccess mod_rewrite farklı sitelerde farklı sonuç vardır

1 Cevap php

I am using mod_rewrite to create SEO URLs. Basically the thing works in the following way: all requests are caught by .htaccess and redirected to a php script (let's say transform.php). transform.php parses SEO URL and transforms it into a normal URL, then includes index.php, then catches application's (index.php's) output and uses RegEx to convert all normal URLs to SEO URLs. So the vital step is to make all request go through transform.php. My .htaccess is rather long however I managed to limit it to the following lines.

<IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine on

    RewriteRule ^index\.php?(.*)$ ./transform.php?p=$1&%{QUERY_STRING} [L]

</IfModule>

Sorun ilk (kök) URL ile olur: http://mysite.com/. I http://mysite.com/ yazıp site benim yerel comp üzerinde yer aldığında, her şey çalışıyor. http://mysite.com/. Htaccess tarafından yakalanır ve daha fazla işlem için transform.php gönderilir. Ancak başka bir sunucuda bu hat (en http://mysite-other-server.com/ diyelim) çalışmıyor. Bu. Htaccess çizgi basitçe isteği yakalamak değildir. Her şeyi ama http://mysite-other-server.com/index.php için çalışıyor.

Ayrıca ben bu ikinci sunucu üzerinde çeşitli siteler var ve bunların bazıları yok iken bazıları çalışmıyor. Bazıları için URL ilk http://mysite-other-server.com/index.php çözümlenir ve sonra diğerleri için URL çözülmüş değil iken. http://mysite-other-server.com/ ile htaccess fırsatlar. Htaccess tarafından ele Sanki

Ben çok karıştı ve herhangi bir şans olmadan googling denedim duyuyorum. Herhangi bir yardım son derece takdir edilmektedir.

1 Cevap

Ben Apache kabul etmeyecek şekilde yapılandırılmış olduğunu varsayalım. Dosyaları htacces.

Sen AllowOverride ayarı ile httpd yapılandırmasının onu etkinleştirmeniz gerekir.

http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride

Başka bir olasılık bunun için LoadModule direktifleri kontrol üretim sunucusu mod_rewrite'ın yüklü değil olmasıdır.