I want to rediret
mysite/page-url.html/
to
mysite/page-url/
How can i do that ?
I tried to create page rule in cloudflare like this
- mysite/*.html
to
mysite/*
but it's not working.
I want to rediret
mysite/page-url.html/
to
mysite/page-url/
How can i do that ?
I tried to create page rule in cloudflare like this
- mysite/*.html
to
mysite/*
but it's not working.
Share Improve this question edited Mar 25, 2020 at 2:44 WordPress Speed 2,2833 gold badges19 silver badges34 bronze badges asked Jan 5, 2020 at 12:06 RGM7RGM7 133 bronze badges1 Answer
Reset to default 0Try using this in Your .htaccess
:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
alternatively You could use in your php code:
wp_redirect(str_replace('.html', '', $url))