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.
http://example.com/aboutと同じ場所をページに表示する、展開できるhtaccessリライトはありますhttp://example.com/#aboutか?そうでない場合は、jQuery で実行できますか?
http://example.com/about
http://example.com/#about
ここで、私はそれを理解しました。完璧ではありません(アンカーにリダイレクトされるため、URLに表示されます)が、私にとっては機能します:
RewriteEngine On RewriteRule ^([a-zA-Z0-9_]+)$ /\#$1 [R,NE]
これを使用していた場合、http://example.com/aboutになりhttp://example.com/#aboutます。