使用 .htaccess 重写 URL 生成重复的 mysql 条目

URL rewrite with .htaccess make duplicate mysql entries(使用 .htaccess 重写 URL 生成重复的 mysql 条目)
本文介绍了使用 .htaccess 重写 URL 生成重复的 mysql 条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

如果使用 .htaccess 重写 url,所有使用 php 的 INSERT 查询都会执行两次(不需要的重复)

If rewrite url with .htaccess, all INSERT query with php is performed twice (unwanted duplication)

我的.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

index.php:

<?php define('DB_LOGIN', 'mylogin');
define('DB_PASS', 'mypass');
define('DB_HOST', 'localhost');
define('DB_TYPE', 'mysql');
define('DB_NAME', 'dbname');

$mysql = MySQL_Connect(DB_HOST, DB_LOGIN, DB_PASS);
$mysql_db = MySQL_Select_DB(DB_NAME);

mysql_query("INSERT INTO `pages` (`title`, `slug`) VALUES ('TEST', 'test')"); ?>

加载一次 index.php 后,我在 mysql 中有两个相同的条目.当我删除 .htaccess 时一切正常,所以,问题一定存在..htaccess 中的重写定义取自 Wordpress - 我喜欢它.

After one load of index.php, I have two same entries in mysql. All is OK when I remove .htaccess, so, problem must be there. The rewrite definition in .htaccess is taken from Wordpress - i like it.

我尝试了 Medoo 框架,但条目仍然重复.

I try Medoo framework, but entries is still duplicate.

那么,有什么建议吗?:-)

So, any suggestion? :-)

推荐答案

默认情况下,浏览器会自动请求 favicon.ico 文件.
但是您没有任何 favicon.ico 文件,因此它被重写(htaccess 中的规则).
这就是您有重复执行的原因.

Browsers automatically request the favicon.ico file by default.
But you don't have any favicon.ico file so it is rewritten (rule in your htaccess).
This is why you have a duplicate execute.

解决方案:

  1. 添加 favicon.ico 文件
  2. 如果请求的 url 是 favicon,则不要插入(在 index.php 中)
  3. 使用规则在您的 htaccess 中禁止它

这篇关于使用 .htaccess 重写 URL 生成重复的 mysql 条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Codeigniter htaccess to remove index.php and www(Codeigniter htaccess 删除 index.php 和 www)
htaccess mod_rewrite part of url to GET variable(htaccess mod_rewrite url 的一部分到 GET 变量)
Replacing a querystring parameter value using mod_rewrite(使用 mod_rewrite 替换查询字符串参数值)
.htaccess in subdirectory #39;overriding#39; parent htaccess(子目录“覆盖父 htaccess 中的 .htaccess)
How to rewrite SEO friendly url#39;s like stackoverflow(如何像stackoverflow一样重写SEO友好的url)
Is it okay to have a very long .htaccess file?(有一个很长的 .htaccess 文件可以吗?)