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 を同じ名前のコントローラーにマップしようとしています。構成ファイルが乱雑にならないように、変数を使用したいと思います。私はこれを試しました:
location ^~ /$1 { rewrite ^ /controllers/$1.php last; }
しかし、それは機能していないようです。何か案は?
そのはず
location / { rewrite ^(.*)$ /controllers/$1.php last; }
ドキュメントが示すように