【发布时间】:2015-08-06 15:31:40
【问题描述】:
我正在尝试将所有 .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]
但是提示页面有重定向循环是错误的
【问题讨论】:
标签: php html apache .htaccess redirect