我如何重定向一个 url 来绕过 link "index.ph" 中的拼写错误?
How do I redirect ONE url to write around a typo in a link "index.ph"?
我的一个同事发送了一些 link 到 URL 的材料,例如:www.oursite.com/important/index.ph
我只想重定向 URL 到正确的 URL:
www.oursite.com/important/index.php
不影响原版URL。我该怎么做?
您可以在 DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteRule ^(important/index\.ph)$ /p [L,NC,R=302]
我的一个同事发送了一些 link 到 URL 的材料,例如:www.oursite.com/important/index.ph
我只想重定向 URL 到正确的 URL:
www.oursite.com/important/index.php
不影响原版URL。我该怎么做?
您可以在 DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteRule ^(important/index\.ph)$ /p [L,NC,R=302]