问题描述
我有一个问题,我想将www.primeradio.org重定向到www.primeradio.org/admin1. admin1是包含索引页面的子文件夹,该索引页面将作为主页开始.我用过
RewriteEngine On
重定向301/http://www.primeradio.org http://primeradio.org/admin1
在 .htaccess 文件中.然后我将其上传到托管帐户中的www根目录,但无法获得结果
我该怎么办?
谢谢
I have a problem i would like to redirect the www.primeradio.org to www.primeradio.org/admin1. The admin1 is the subfolder that contains the index page which will start as the home page. I have used
RewriteEngine On
Redirect 301 /http://www.primeradio.org http://primeradio.org/admin1
in the .htaccess file. Then i uploaded it to the www root in the hosting account but am unable to get the result
what should i do?
Thank you
推荐答案
<code>
header("Location: admin1\index.php");
?>
</code>
对此.
:)
to it.
:)
这篇关于(htaccess)将www.primeradio.org重定向到www.primeradio.org/admin1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!