我正在使用 .htaccess 将请求重定向到 index.php,如下所示:
RewriteCond %{REQUEST_URI} index\.php
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
它工作正常,但问题是表单无法再发布。
如何在仍然能够发布表单的同时从 url 隐藏 index.php。
我正在使用 .htaccess 将请求重定向到 index.php,如下所示:
RewriteCond %{REQUEST_URI} index\.php
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
它工作正常,但问题是表单无法再发布。
如何在仍然能够发布表单的同时从 url 隐藏 index.php。