jak dodaje do /httpd.conf LoadModule rewrite_module modules/mod_rewrite.so
wywala ze modul jest juz uzywany...
Zreszta robilem turiala askeet i nie mailem problemow....
jak dodaje do htaccess wywala blad zewnetrzy serwera :/
AddModule mod_rewrite.c
LoadModule rewrite_module modules/mod_rewrite.so
Dodam, ze dla dev jest ok
http://styx.ds1.agh.edu.pl/~sanchoo/fronte.../myapp_dev.php/phpinfo:
http://styx.ds1.agh.edu.pl/~sanchoo/fronted_symfony/test.phpPs: RewriteBase /nie pomoglo :/
http://styx.ds1.agh.edu.pl/~sanchoo/fronted_symfony/web/w .hat... mam:
<IfModule mod_rewrite.c>
RewriteEngine On
# we skip all files with .something
RewriteCond %{REQUEST_URI} \..+$
RewriteCond %{REQUEST_URI} !\.html$
RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>