Na localhoście udało mi się wykonać NiceURL:
Przeniosłem ForceType do:
Cytat
DocumentRoot "D:PrivateMy Webs"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
<Files redirect>
ForceType application/x-httpd-php
</Files>
</Directory>
I teraz mam ładnego url'a
http://localhost/test/redirect/news/page/3
a plik redirect:[php:1:ed1f26a3d6]<pre>
<?php
var_dump( $_SERVER['PATH_INFO'] );
?>
</pre>[/php:1:ed1f26a3d6]W manualu do Apache pisze:
http://httpd.apache.org/docs-2.0/howto/htaccess.html pisze, że w przypadku, gdy .htaccess nie jest analizowany, należy sprawdzić dyrektywę AllowOverride - ustawiona na "None" blokuje możźliwość użycia .htaccess (jeśli dobrze zrozumiałem). Niestety, póbowałem przestawić ją na All - nie pomogło. Dopiero wstawienie jak wyżej ForceType bezpośrednio do httpd.conf załatwiło sprawę.