apache - mapping non exist file -


if robots.txt non exist mupping on robots.php, if exist -return robots.txt

rewriteengine on     rewritecond %{robots.txt} !-f [nc]     rewriterule robots.txt robots.php [l]  

this code return robots.php

rewritecond %{request_filename} !-f  rewriterule ^/robots\.txt/$ robots.php [l] 

think that's need...


Comments

Popular posts from this blog

How can I edit my VIM config so that Vim treats ".ejs" files the same as it currently treats my html files? -

Python __call__ special method practical example -