Ara 8 2011
htm ve html de php çalıştırma .htaccess ayarları
Edit the .htaccess file default yol : /home/username/public_html .htaccess sayfasını bulun aşağıdaki kodu ekleyin : RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html .htaccess kaydedin PHP kodunu bit .html de çalıştırma örnek sayfa test.html test.html kodu : <html> <head> </head> <body> <h1> <?php echo “php cok guzel”; ?> </h1> </body> </html>
Nis 4 2018
.htaccess ile domain yönlendirme
RewriteEngine on RewriteCond %{HTTP_HOST} ^domainadi.net$ [OR] RewriteCond %{HTTP_HOST} ^www.domainadi.net$ RewriteRule ^/?$ “http://www.domainadi.com/” [R=301,L]
Devamı
By Burhan KARADERE • Programlama - Software • 0 • Tags: .htaccess, domain, ile, yönlendirme