Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の動的URLは
http://www.example.com/hamlyn/page.php?id=14
このURLを短くしたり、検索エンジンに適したものにするにはどうすればよいですか?
.htaccess
RewriteEngine on RewriteRule ^page/([0-9]+)$ page.php?id=$1
上記はあなたが次のようなURLを持つのに役立ちます:
http://www.example.com/hamlyn/page/14
これはにマップされます
それが役に立てば幸い。