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.
我有 3 个目录级别的页面、城市、类别和业务
例如纽约/餐厅/麦当劳。
所以我有city.php、category.php和business.php
例如 city.php?url=new-york、category.php?url=new-york/restaurants 和 business.php?url=mcdonalds
我将如何创建一个 mod_rewrite 来制作:/new-york、/new-york/restaurants 和 /mcdonalds
尝试这个
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-s RewriteRule ^/new-york/(.*)$ category.php?url=new-york/$2 [L]