php-.htaccess 301重定向并删除合并的.html

我正在尝试将所有.html文件从stripelatice_ui文件夹重定向到根目录并删除.html扩展名

localhost:8089/stripelatice_ui/home.html

localhost:8089/home

我尝试使用

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$$1.html [QSA,NC,L]


RewriteRule ^stripelatice_ui/(.*)$/$1 [R=301,NC,L]

但是说页面有重定向循环是错误的

解决方法:

您可以使用:

RewriteEngine On
RewriteBase /stripelatice_ui/

# To externally redirect /stripelatice_ui/file.html to /file
RewriteCond %{THE_REQUEST} /stripelatice_ui/(.+?)\.html[\s?] [NC]
RewriteRule ^ /%1 [R=301,L,NE]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]+)/?$$1.html [L]
上一篇:php-禁止直接访问文件


下一篇:php-使用多个参数重写URL而不更改URL