Ben sadece ubuntu üzerinde taze bir lamba yüklemek yığını yaptım ve benim varsayılan web sitesi için mod_rewrite modülü sağladı. Bütün sorgu dizesi bir değişkeninde tutulur ne ben istiyorum, Drupal sorguları için benzer bir şeydir. Bu amaçla aşağıdaki mod_rewrite kod kullanılabilir:
RewriteRule ^(.*)$ home.php?q=$1 [L,QSA]
The problem begins when some a string starts with the name of the file already existing in the directory; For example if I open a page: http://localhost/home/blablabla - the contents of $_GET are as follows:
Array ( [q] => home.php )
Ne görmek istiyorum:
Array ( [q] => home/blablabla )
Ben varsayılan web sitesi veya mod_rewrite yapılandırması ile bir şey olduğunu düşünüyorum, ama ben sadece bunu çözemedim ...