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.
我很难弄清楚如何在 WAMP 中实现一个简单的重写引擎规则。
目标是获取ad uri like
www.mydomain.com/index/
从像这样的请求
www.mydomain.com/index.php
当我自己尝试时,Wamp 一直告诉我配置文件中有错误。
你能提出一个正确的规则来完成这项任务吗?
永远感谢。
我没有测试它,但它似乎是正确的。
RewriteCond /%{REQUEST_FILENAME}.php -f RewriteRule ^([a-zA-Z0-9_-\s]+)/$ /$1.php\
在使用它之前,请确保 mod_rewite 已启用。