I am absolutely lost, trying anything silly. Probably you know the situation. I tried hints from many threads here and on Google as well, but nothing helped. I have rewrite module loaded on my Apache (checked by phpinfo). For a site I have .htaccess created, where currently simple rule is stored:
RewriteEngine on
RewriteBase /
RewriteRule ^/certifikaty\.html$ certifikaty.php
So, I expect http://www.contech.cz/certifikaty.html will show http://www.contech.cz/certifikaty.php. Unfortunatly not. So, I set in my httpd.conf these lines:
RewriteLogLevel 9
RewriteLog "logs/rewrite.log"
The file (rewrite.log) is created, but it's empty even after server restart.
Please, could you help me to get out of this?
Marek
/.RewriteRuledoes not include the beginning/of the request URI.RewriteRule ^certifikaty\.html$ certifikaty.php [L]– Michael Berkowski Nov 19 '12 at 12:31certifikaty.phpor internally rewrite? If you need a redirect add[L,R=301]– Michael Berkowski Nov 19 '12 at 14:17/certifikaty.phpactually exist? Which of them is the real file? – Michael Berkowski Nov 19 '12 at 14:57