admin管理员组

文章数量:1390677

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 badges
Add a comment  | 

1 Answer 1

Reset to default 0

Try 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))

本文标签: How To Redirect urlhtml to url