. Ben php olarak html ayrıştırmak benim htaccess dosyasında bu pasajı kullanıyorum:
<FilesMatch "\.(html|htm|txt)$">
SetHandler application/x-httpd-php5
</FilesMatch>
this is working fine in my website(online) but not in my localhost (using WAMP latest version).. but if I change the above code to:
<FilesMatch "\.(html|htm|txt)$">
SetHandler application/x-httpd-php
</FilesMatch>
then, this is working fine in my localhost but not in my website..
I have to add/remove the 5
in SetHandler application/x-httpd-php
to work in either one side.
Lütfen bana yardım et ..