All Tags »
regexp »
htaccess
Sorry, but there are no more tags available to filter with.
-
I want to identify files that do NOT have an extension so they can be parsed for PHP. This is for a web site .htaccess file running on a Linux/Apache web server.
I have tried to filter for files not containing a dot (.)
Code I have tried is:
<FilesMatch "[^.]*">
ForceType application/x-httpd-php
</FilesMatch> ...