拡張子 .html
でアクセスした場合に .php
を動かす設定
.htaccess
RewriteEngine On
RewriteBase /test
RewriteCond %{REQUEST_FILENAME} ^(.*)\.(html) [NC]
RewriteCond %1.php -f [NC]
RewriteRule ^(.*).html $1.php [L]
Go to list of users who liked
More than 5 years have passed since last update.
拡張子 .html
でアクセスした場合に .php
を動かす設定
RewriteEngine On
RewriteBase /test
RewriteCond %{REQUEST_FILENAME} ^(.*)\.(html) [NC]
RewriteCond %1.php -f [NC]
RewriteRule ^(.*).html $1.php [L]
Register as a new user and use Qiita more conveniently
Go to list of users who liked