8
9

More than 5 years have passed since last update.

htaccessで動的URLを静的URLに

Posted at

動的URL
hoge.php?id=123
を静的URL
hoge123.html
として認識させる.htaccessの設定

RewriteEngine on
RewriteRule hoge(.+)\.html$  hoge.php?id=$1

上手く動作するかは、サーバーの設定によって変わりそうですが。
いろいろな情報があるなかで、試行錯誤して実際に使えた方法のメモです。

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9