un .htaccess pour redirection tous les .html vers. php, ça peut servir surtout lorsqu'on passe d'un site statique vers un site dynamique:
#start here
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)\.html$ http://your-website/$1.php [R=permanent,NC]
#end here
#start here
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)\.html$ http://your-website/$1.php [R=permanent,NC]
#end here
No comments:
Post a Comment