サブドメイン [http://s.yourdomain.com など] でスクリプトを使用するときに短い URL スクリプトを作成すると、.htaccess は機能しませんが、スクリプトは yourdomain.com/sh/ などの他の場所では正常に機能します
これが私が書いたコードです.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
RewriteRule ^([a-zA-Z0-9]+)$ index.php?short=$1
ErrorDocument 404 /index.php
サブドメインでも機能し、上記の機能を実行する.htaccessコードが必要です