问题描述
我在我的网站上有kNow more
按钮,使用时单击kNow more
按钮,然后我必须重定向到product.PHP
页面。以下是我正在使用且正在运行的代码。
<a href="product">KNow More</a>
现在,我必须将网址从http://example.com/product.PHP
重写为
http://example.com/products/products2/products3/products
我尝试了以下代码
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.PHP [NC,L]
RewriteRule ^products/products2/products3/products$ product.PHP [L]
但是它不起作用。您能帮我解决重写规则吗?
我也尝试过
RewriteRule ^products/products2/products3/products product.PHP
解决方法
具有这种方式:
RewriteEngine On
# match specific URI
RewriteRule ^products/products2/products3/products/?$ product.php [L,NC]
# php estension
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}/$1.php -f
RewriteRule ^(.+?)/?$ $1.php [L]
请注意,规则的顺序已更改,并在将.php
添加到URI之前检查.php
文件是否存在。