我正在尝试将我的 URL 重写http://givehands.co.in/post.php?p=post&id=1
为http://givehands.co.in/post/1/
使用 htacess。
但它会被重定向到 URLhttp://givehands.co.in/post.php?p=post&id=1
而不是重写它?我的域 givehands 映射到我的网络服务器的子目录。
任何人都可以帮助我正确的重写规则吗?我是新来的。
Options -Multiviews
RewriteEngine On # Turn on the rewriting engine
RewriteBase /
RewriteCond %{REQUEST_URI} post/(.*)
RewriteRule post/(.*)/ http://givehands.co.in/post.php?p=post&id=$1 [L]
RewriteCond %{REQUEST_URI} post/
RewriteRule post/ http://givehands.co.in/post.php [L]