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.
我正在尝试做这样的事情,但我无法得到它:
RewriteRule ^(.*)pagina1(.*)$ $1pagina$2 [R=301,L]
($2,因为我需要在 url 中传递一些参数)
如何“重定向或重写”所有文件:(pagina1.html、pagina2.html、pagina3.html 等)到 pagina.html
我必须使用相对 url,因为我想对目录中的所有文件夹执行此操作。
好吧,经过2天的尝试,我不知道我该怎么办...
有了这个,您可以将所有 *.html 重定向到 pagina.html
RewriteRule ^([a-zA-Z0-9_-]+).html$ pagina.html [QSA]