美好的一天善良的人们..现在我知道关于干净的URL的这个问题已被问过十几次,但它们似乎都不是我遇到的问题。我使用while循环为我的表单生成不同的product_ID,这是使用GET方法提交的。但是,我能够将我的htaccess文件上的URL重写为类似
的字符串localhost/source/p/variable1-variable2-variable3.html
我还使用javascript来阻止默认提交给我所需的URL格式。
现在我的问题是这个..没有URL重定向,它给了我不同的ID,但是以不洁的格式:
localhost/source/p? agent_id=variable1&product_title=variable2&product_id=variable3
我的while循环中有不同的变量..
但是使用Javascript重定向,它只给我第一个id,并且持续显示具有该ID的内容超过20种不同的情况。所以我需要有关如何提供我通常应该获得的不同ID的帮助。这是我的文件:
我的HTACCESS文件
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteRule ^p/([0-9]+)-([0-9a-zA-Z_-]+)-([0-9]+)\.html$ product.php?agent_id=$1&product_title=$2&product_id=$3 [QSA, NC, L]
php动作文件
<?php
$SQL = Select * from product where..
$query = mysqli_query($con, $sql);
While ($row = mysqli_fetch_assoc($query)) {
$product_id = $row ['product_id'];
$agent_id = $row ['agent_id'];
$product_title = $row ['product_title'];
?>
<form id="myform" method='get' action='p/'>
<input type="hidden" name="agent_id" value="<?php echo $agent_id; ?>" />
<input type="hidden" name="product_title" value="<?php echo $product_title; ?>" />
<input type ="hidden" name="product_id" value="<?php echo $product_id; ?>" />
<button type="submit">View product</button>
</form>
<?php } ?>
我的JAVASCRIPT
$(function(){
$("#myform").submit(function(e){
e.preventDefault();
var action = $(this).attr("action");
var agent_id = $(":input[name='agent_id']").val();
var product_title = $(":input[name='product_title']").val();
var product_id = $(":input[name='product_id']").val();
action = action + agent_id + "-" + product_title + "-" + product_id + ".html";
location.href = action;
});
});
所以我不知道我做错了什么..不知道如何循环它以提供各种ID,因为我认为while循环会改变它..但它ISN&#39;吨。
对不起,如果它很乱,请通过我的手机打字。
答案 0 :(得分:1)
首先,任何时候你都不确定.htaccess在mod_rewrites方面做了什么,你应该首先调高mod_rewrite的日志记录级别,因为这通常可以指向正确的方向: http://httpd.apache.org/docs/current/mod/mod_rewrite.html
LogLevel alert rewrite:trace3
接下来,我建议您提供匹配的网址的有效示例,然后使用像Regex Coach这样的工具来检查您的模式是否实际匹配数据。
我对这里的实际问题的猜测是产品标题没有按预期匹配(可能是意外的编码字符或其他东西),但是mod_rewrite的日志记录会告诉你正则表达式是否成功。 / p>
最后,如果您实际上没有提交表单,我不确定您为什么要使用表单标记...
为什么不使用PHP构建一个重定向到该位置的按钮?
...
$product_title = $row ['product_id'];
echo "<input type='button' value='View product' onclick='location.href=\"/p/".urlencode($agent_id)."-".urlencode($product_title)."-".urlencode($product_id)."\";'>\n";
?>
比试图阻止表单提交和使用Javascript动态构建它更清晰...