今私のURLは次のようになります:
http://mysite.com/home/index/2
それをこれに変えるための htaccess ルールは何でしょうか?:
http://mysite.com/page/2
注: 2 には、1 から無限大までの任意の数を指定できます。
今私のURLは次のようになります:
http://mysite.com/home/index/2
それをこれに変えるための htaccess ルールは何でしょうか?:
http://mysite.com/page/2
注: 2 には、1 から無限大までの任意の数を指定できます。
I refer to this website for reference every time I need to rewrite the url. You should probably read there too. Below is my suggestion, please modify according to your need.
RewriteRule ^/home/index/(.+) /page/$1 [R]