我是apache的新手,基于一些教程,我构建了一个.htaccess
文件来重写网址。
RewriteEngine on
RewriteRule ^print/([\s\S]*[.pdf]*)$ phantom.php [NC]
从form
我发送POST
个请求到phantom.php
个文件,其中包含三个字段:
document
- 一个html字符串title
- 字符串formatted
- 布尔值在apache的帮助下,我构建了用户友好的URL,如下所示:http://example.com/print/document.pdf
然而,接收POST请求的phantom.php
文件将布尔值设为false
,无论我如何设置它。
如何获取数据的实际值而不是false
值?