gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 17:42:52 24 4
gpt4 key购买 nike

所以我的 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com