javascript - .htaccess 文件扩展名移除器代码破坏网站表单

标签 javascript php apache .htaccess mod-rewrite

所以我的 HTACCESS 中有这段代码,它很棒,因为如果访问者进入带有 .php 文件扩展名的页面,它首先从我的页面中删除 .php 文件扩展名,然后它允许页面在没有扩展名的情况下加载. (所以它只是美化了 URL)

# REMOVE FILE EXTENSIONS
RewriteEngine On

# browser requests PHP
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^\ ]+)\.php
RewriteRule ^/?(.*)\.php$ /$1 [L,R=301]

# check to see if the request is for a PHP file
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^/?(.*)$ /$1.php [L]

效果很好,但后来我在页面上遇到了问题:http://www.CyberBytesInc.com/contact因为我有一个调用 .php 文件发送的表单:

<form id="request-form" action="resources/script/question-send.php" method="post">

上面的 htaccess 代码删除了这个文件的 .php,我得到了错误代码“不允许直接访问这个页面。”在脚本内部,它是

} else {
    die('Direct access to this page is not allowed.');
}

一旦我从 htaccess 中删除它,它就会开始工作:

# browser requests PHP
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^\ ]+)\.php
RewriteRule ^/?(.*)\.php$ /$1 [L,R=301]

但是如果 .php 放在页面的末尾,我就不会得到它删除文件扩展名的好处(谷歌的大部分内容都用文件扩展名编入索引,我正试图删除它。

我想如果我能以某种方式让 htaccess 代码工作,除了从我的/resources/scripts/文件夹访问文件时,我不知道解决这个问题的最佳方法。

您可以立即访问该网站,看看它是否因此而无法正常工作。目前我可能会删除上面提到的代码行,这样我的表单至少可以正常工作。因此,如果您查看该站点并且表单正在运行,那是因为我删除了上面的 .htaccess,直到我弄清楚如何成功地将它放在那里。

谢谢!

编辑:question-send.php 的完整代码

<?php

// Get email address
$email_address = 'email@site.com';

// Ensures no one loads page and does simple spam check
if( isset($_POST['name']) && empty($_POST['spam-check']) ) {

    // Declare our $errors variable we will be using later to store any errors
    $error = '';

    // Setup our basic variables
    $input_name = strip_tags($_POST['name']); //required
    $input_email = strip_tags($_POST['email']); //required
    $input_subject = strip_tags($_POST['subject']);
    $input_message = strip_tags($_POST['message']); //required

    // We'll check and see if any of the required fields are empty
    if( strlen($input_name) < 2 ) $error['name'] = '<label for="question-name">Please enter your <b>Name</b></label>';
    if( strlen($input_message) < 5 ) $error['message'] = '<label for="question-message">Please leave a longer <b>Message</b></label>';

    // Make sure the email is valid
    if( !filter_var($input_email, FILTER_VALIDATE_EMAIL) ) $error['email'] = '<label for="question-email">Please enter a valid <b>Email Address</b></label>';

    // Set a subject & check if custom subject exist
    if( $input_subject ) $subject = "(Question) - $input_subject";
    else $subject = "(Question) - No Subject";
    // $message .= "$input_message\n";
    $message .= "\n\n---\nThis email was sent by $input_name from $input_email";

    // Now check to see if there are any errors 
    if( !$error ) {

        // No errors, send mail using conditional to ensure it was sent
        if( mail($email_address, $subject, $message, "From: $input_email") ) {
            echo '<p class="success"><b>EMAIL SENT SUCCESSFULLY.</b><br />' . "Dear $input_name, " . 'thank you for contacting CyberBytes Inc. Please allow us <b>24-48</b> hours to review your request and get back to you. If you need a response sooner, please contact us via telephone at (716) 876-1824.<br /><br /><b>Please verify that this is your correct Email Address:</b><br />' . "Email Address: <i>$input_email</i>" . '<br /><br /><span class="red"><b>PLEASE NOTE:</b></span><br /> If we do not respond to your request within a reasonable amount of time, please give us a call as there may have been an error on our end with your request.</p>';
        } else {
            echo '<p class="error">There was a problem sending your email! Please give us a call at (716) 876-1824 as there seems to be an error on our end with the form.</p>';
        }

    } else {

        // Errors were found, output all errors to the user
        $response = (isset($error['name'])) ? $error['name'] . "\n" : null;
        $response .= (isset($error['email'])) ? $error['email'] . "\n" : null;
        $response .= (isset($error['message'])) ? $error['message'] . "\n" : null;

        echo "<p class='error'>$response</p>";

    }

} else {

    die('Direct access to this page is not allowed.');

}

最佳答案

更改规则以跳过 POST 请求:

# browser requests PHP
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{THE_REQUEST} ^\s/([^\ ]+)\.php
RewriteRule ^/?(.*)\.php$ /$1 [L,R=301]

关于javascript - .htaccess 文件扩展名移除器代码破坏网站表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20711870/

相关文章:

PHP - else, 'escape' 嵌套并跳到elseif

javascript - 使用php获取浏览器宽度

php - WordPress - 在编写创建动态类的函数时,如何根据顶级父名称定位子页面?

javascript - 如何调整选择器下拉菜单的高度

javascript - plotOptions.series.point.events 在使用向下钻取时返回空点数据

java - Apache tomcat 6 问题

php - UTF-8贯穿始终

python - Django 文件上传偶尔失败

javascript - 如何让我的函数被 $(..).name() 调用?

javascript - 如何在 Jquery 中为每个循环增加 html 类名