URLをedit.php?id=2
からedit/id/2
に書き換えるにはどうすればよいですか?
これを試して
RewriteEngine On
RewriteBase /
RewriteRule ^edit/id/([0-9]+)/?$ edit.php?id=$1 [NC,QSA,L]
次からのリダイレクトが必要な場合:
http://yoursite.com/subpage1/subpage2/?YOURSTRING=blabla
---------->
http://yoursite.com/subpage1/subpage2/
次に、.htaccess
の先頭に次を挿入します。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} YOURSTRING=(.*)
RewriteRule ^(.*)$ /$1? [R=301,L]
</IfModule>
## If WordPress is not installed in root folder, then edit the fourth line like this
RewriteRule ^(.*)$ /YOUR-WORDPRESS-DIRECTORY/$1? [R=301,L]
追伸QUESTION MARKから他のリダイレクトが必要な場合は、 https://stackoverflow.com/a/15680832/237734 を使用します