Iamはhtacess http://givehands.co.in/post.php?p=post&id=1
を使用するようにURLを書き直そうとしています。http://givehands.co.in/post/1/
http://givehands.co.in/post.php?p=post&id=1
しかし、それを書き換えるのではなく、URLにリダイレクトされますか?私のドメインギブハンズは私のウェブサーバーのサブディレクトリにマッピングされています。
誰かが正しい書き換えルールを手伝ってくれませんか?これは初めてです。
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]