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.
有人可以帮助我尝试使用匹配特定 URL 格式的正则表达式来执行重写规则。
我需要一些说明 URL 是否为
www.site.ag/whatever
重定向到/index页面。
/index
我不确定这是否是您需要的,但这会将所有内容重定向到 index.php,但实际现有文件或目录的 URL 除外。
RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^.*$ ./index.php