下記URLから
https://xxxxx.com/example/test.html
こうしたい
https://xxxxx.com/example/test
##実装
.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
htaccessの書き方でした!!
Go to list of users who liked
More than 3 years have passed since last update.
下記URLから
https://xxxxx.com/example/test.html
こうしたい
https://xxxxx.com/example/test
##実装
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
htaccessの書き方でした!!
Register as a new user and use Qiita more conveniently
Go to list of users who liked