PHP .htaccess重写网址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP .htaccess重写网址相关的知识,希望对你有一定的参考价值。
我写了下面的URL重写规则,但它也删除了post参数。请帮我用原始参数重写URL
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
答案
使用标志R=301
,您正在执行重定向,而不是仅在内部重写URL。删除它,一切都应该正常
以上是关于PHP .htaccess重写网址的主要内容,如果未能解决你的问题,请参考以下文章