POST htaccess yönlendir

0 Cevap php

Bu soru çok benzer: .htaccess - Is it possible to redirect post data? (eariler sordum) ama bu cevap benim için çalışmak için görünmüyor.

Ben bir form var:

<form action="http://a.test.com/contact" name="contact" method="post">

ve bir eklenti etki içinde, (test.com bir addon), orada bir alt etki alanı (a.), ve orada içinde bir dosya item.php var ve. htaccess

aşağıdaki gibi benim htaccess olduğunu:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/$ $1.php 

# Forces a trailing slash to be added
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]

#normal rewrites
RewriteRule ^[~|-]?([a-zA-Z0-9]+)[/]*$ item.php?user=$1 [NC,L]

Not: Ben bana bir 500 sunucu hatası veriyor [NC, P] olarak değiştirdim, çünkü [NC, L] olarak bıraktı.

ve benim item.php

<?php
echo "<pre>";
print_r($_POST);
echo "</pre>";

I http://a.test.com/item.php?user=contact eylem olarak yaparsanız ve ne olursa olsun formu ne içerdiğini, $ _POST, boş ... ancak bir.

her şey iyi gider. Ilanı htaccess atlar, ve böylece işe çözüm görünmüyor.

Şimdiden teşekkürler

0 Cevap