创建自定义页面网址

时间:2014-03-16 10:06:29

标签: php .htaccess mod-rewrite

我的链接现在是exp。 http://example.com/index.php,如何将其更改为exp。 http://example.com/idex-home-page.html

2 个答案:

答案 0 :(得分:1)

在.htaccess

中试试
RewriteEngine on

RewriteRule idex-home-page.html index.php

你也应该看看这个初学者教程:

http://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/

答案 1 :(得分:0)

如果我找对你。

您要么尝试更改主页目录。 你不想为此获得htaccess的东西。

您只需更改网络服务器设置即可。检查Web服务器的文档。对于Apache,这可能很方便http://httpd.apache.org/docs/current/en/sections.html

有很多解决方案。它可能是针对您的案例的解决方案,但是。在你的index.php中

<meta http-equiv="refresh" content="1;url=http://example.com">

OR

  <script type="text/javascript">
     window.location.href = "http://example.com"
  </script>

取自:Redirect from an HTML page