user8326293
user8326293

Reputation:

How can I direct index.html to index.php?

How can ı do a index html direct to wp index.php (Latest version of Wordpress). I reviewed the canonical.php but no result

Upvotes: 0

Views: 686

Answers (1)

lemonade
lemonade

Reputation: 28

You can use a simple .htaccess rule as described here.

RewriteEngine On
RewriteRule ^(.*)\.html$ $1.php [L]

Add this to the .htaccess file in the root of your website.

Upvotes: 1

Related Questions