Tag: Apache.htaccess

是否有可能redirect发布数据?

我有一个网站,所有的请求被无声地(通过.htaccess )redirect到index.php ,然后PHP被用来显示正确的页面(通过parsingREQUEST_URI )。 我想知道是否有可能提交POST数据到一个虚假的地址吗? 我目前有我的表格,所以… <form action="/send-mail" method="post"> 而我的.htaccess规则是… # redirect mail posting to index RewriteRule send-mail index.php?send-mail [NC,L] 我的index.php检查isset($_GET['send-mail'])正常工作。 然而,这似乎放弃了所有应该发送给它的POST数据。 有没有办法保留发布数据? 我不想使用GET,因为它不能发送尽可能多的信息,虽然它可能不是一个简单的查询forms的问题。 这是我的.htaccessredirect到index.php # serve files and dirs if they exist please, otherwise send to index RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule . index.php

使用.htaccess在目录(包括所有子目录)中禁用PHP

我正在做一个网站,允许人们上传文件,HTML网页等…现在我有一个问题。 我有这样的目录结构: -/USERS -/DEMO1 -/DEMO2 -/DEMO3 -/etc… (every user has his own direcory here) -index.php -control_panel.php -.htaccess 现在我想禁用PHP,但启用服务器端包括在/ USERS的直接和子目录 这可以做到(以及如何:))? 提前致谢。 顺便说一下,我使用WAMP服务器

服务器不能parsing.html作为PHP

我有我的.htaccess文件中包含的代码,但我试图包括的PHP代码不起作用。 Options +Includes AddType text/html .htm .html AddHandler server-parsed .htm .html AddType application/octet-stream .vcf AddOutputFilterByType DEFLATE text/html text/htm text/plain text/css text/php text/javascript application/x-javascript