我的 .htaccess 有问题 我已经构建了一个链接缩短器,例如 bit.ly。
像 www.domain.com/jdJdh 这样的新请求应该重定向到 index.php 在我的本地开发服务器上,.htaccess 重写工作正常,但在生产服务器上,我只收到错误 500。
这是我的 .htaccess:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?url=$1 [L,QSA]
apache 版本是 2.2.22。
谢谢阅读!