I want to redirect to static html-files if they exist in a subdirectory.
I'm wondering if a little php script would be more performant as a htaccess RewriteCond.
Has somebody expiriences with that?
Thanks a lot.
|
I want to redirect to static html-files if they exist in a subdirectory. I'm wondering if a little php script would be more performant as a htaccess RewriteCond. Has somebody expiriences with that? Thanks a lot. |
|||
|
|
|
Doing it via mode_rewrite (in httpd.conf or in .htaccess) will be more efficient than doing it via a PHP script. Just think about it, doing it in PHP will require Apache to load mod_php module and then PHP interpreter will be called and your PHP script will be compiled and executed. All that can be skipped if you handle it in .htaccess itself. |
|||||||||||||||
|