1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

拡張子の偽装 (拡張子 .html でアクセスした場合に .php を動かす設定)

Last updated at Posted at 2019-02-13

拡張子 .html でアクセスした場合に .php を動かす設定

.htaccess
RewriteEngine On
RewriteBase /test
RewriteCond %{REQUEST_FILENAME} ^(.*)\.(html) [NC]
RewriteCond %1.php -f [NC]
RewriteRule ^(.*).html $1.php [L]
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?