当我将我的脚本与任何子域[如 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 代码也可以在子域上工作并执行上述功能