Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Options +FollowSymLinks RewriteEngine on RewriteRule home$/project1/index.php
此代码中是否缺少某些内容?我试图重写我的网址,但它给了我 500 错误
这是因为此规则中的语法错误:
RewriteRule home$/project1/index.php
正确的语法是:
RewriteRule matching-pattern target-uri [flags]?