在nginx.conf文件中,可以使用rewrite指令來重定向URL。語法如下:
rewrite regex replacement [flag];
其中,regex是一個正則表達式,匹配需要重定向的URL。replacement是重定向后的URL或者重定向規則。flag是一個可選的標志,用于指定重定向的行為。
例如,如果想要將所有以/example開頭的URL重定向到/example.html,可以使用以下配置:
rewrite ^/example(.*)$ /example.html$1 last;
這樣,當訪問http://example.com/example
時,將會被重定向到http://example.com/example.html
。