我在表单验证后与标题位置重定向进行了表单联系。 当url像这样的时候,每件事都可以正常工作
mysite.com/index.php?p=contacts
--->>与
header('Location: index.php?p=contacts'); in post_contact.php
但是在.htaccess中添加此规则,
RewriteRule ^(en_US|fr_FR)/([^\?]+)$ /index.php?lang=$1&p=$2 [NC]
post_contact.php中的重定向不再起作用
header('Location: index.php?p=contacts');
可能有人试图给我一些帮助