我需要将一些html页面重定向到相应的php页面。
这意味着如果用户来自我的www.example.com/sample.html页面的任何引荐网站,则应将其重定向到www.example.com/sample.php页面而不显示html页面。
我需要这样做3页。我怎样才能做到这一点 ?请帮帮我:)。
答案 0 :(得分:4)
您可以创建.htaccess
文件并将其放在Web服务器的根目录中。它应包含以下内容:
Redirect 301 /sample1.html http://www.example.com/sample1.php
Redirect 301 /sample2.html http://www.example.com/sample2.php
Redirect 301 /sample3.html http://www.example.com/sample3.php
答案 1 :(得分:0)
您可以使用.htaccess文件正确地重定向文件
在.htaccess中包含cose
RewriteEngine on RewriteRule ^(。*)。html $ $ 1.php
或以其他方式
使用php
echo“window.location ='\ www.example.com/sample.php'\”;
希望我能以更好的方式帮助你
答案 2 :(得分:0)
使用以下行创建.htaccess:
重定向301 ^(。*)。html $ $ 1.php
答案 3 :(得分:-1)
试试这个......
<?php
header('Location: www.example.com/sample.php');
?>