Ben sadece tüm istekleri yakalamak ve tüm POST veri bozulmamış ile benim catchall sayfaya onları içten iletmek istediğiniz
Catch all page: http://www.mydomain.com/addons/redirect/catch-all.php
Ben çok kombinasyonları denedim, ama ben catch-all.php daha belirtirseniz benim sunucu dahili yönlendirmek istemiyor
# Internally redirect all pages to "Catch" page
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) /addons/redirect/catch-all.php [L]
Ayrıca, [L] gerekiyorsa ya da dahili yönlendirmeler için işe yaramaz mı?
Sonra, ne php kod bunu kullanmak, POST verileri kapmak için kullanmak istiyorsunuz, ve nihayet PHP başlangıçta istenen sayfaya yönlendirme sayfası
Would it be done just as normal by using $_POST['variable_name']; or something different? Then, how would I go about calling the originally requested page, so I can tell PHP to header location direct them to that page?
Teşekkürler!
GÜNCELLEME:
Ha hasta, boşver. Durum iş YAPAR. İşte benim kod:
# Internally redirect all pages to "Catch" page
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/robots.txt$
RewriteCond %{REQUEST_URI} !\.(gif¦jpe?g¦png¦css¦js¦pdf¦doc¦xml)$
RewriteCond %{REQUEST_URI} !^/addons/redirect/catch-all\.php$
RewriteRule (.*)$ /addons/redirect/catch-all.php?q=$1 [L]
Thanks guys for the inspiration! Now time to get that PHP to work...