我在drupal 8.2.6上做了一个网站,它有一个问题,即在新的浏览器或计算机中,您无法直接访问内容,如: 它会将您从example.com/abc重定向 to example.com/index.php 所以你只能通过访问内容 example.com/index.php/abc 所以我想将所有访问网址(例如example.com/content)重定向到example.com/index.php/content,但如果我们执行通常的301重定向,则会进行重定向循环
我找出了一些代码
RewriteCond %{REQUEST_URI} /.
RewriteRule index.php.$ - [NC]
RewriteRule ^(.*)$ https://andrewyg.net/index.php/$1 [L,R=301,NC]
是对的