If you want to recreate the error go to www.tlcnz.com and click on the contact us link manşete altında yatay menüde. Site tamamen işlevsel olmayan olmama çıkarları tüm diğer diğer bağlantılar tamamen sorgu dizesi kaldırdık ve her biri için ayrı ayrı dosyalar ile değiştirilir - iletişim formu için linke hariç. Ben menu.swf dosyası kullanan bazı işlevleri için genel bir çözüm gerekiyor. Artı güzel ve zarif olmak için kullanılır. Bu, tüm çalışmak için kullanılır ... Ben bunu kırmayı başardı nasıl mystified.
My Javascript is here. İşte ben kullanıyorum PHP. Bu Ajax üzerinde 404 geri geldiği bloader.php olduğunu
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
<?PHP require_once('blog/wp-blog-header.php');?>
<?PHP
$name = $_GET['name'];
query_posts('pagename='.$name);while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(''); ?>
<?php endwhile; ?>
Ve burada çalışır ve tam olarak aynı olan about.php olduğunu. Bu sadece bir sorgu dizesi almaz.
<?PHP require_once('blog/wp-blog-header.php'); ?>
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
<?PHP $name = "about";
query_posts('pagename='.$name);while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(''); ?>
<?php endwhile; ?>