如何导航到我的网站的另一个页面而无需在php中重新加载标题

时间:2017-12-27 09:35:24

标签: javascript php html

直到现在我一直在使用GET变量,当点击链接/按钮时,该变量会传递给URL,然后index.php页面会加载该页面。

例如 - 默认网站加载index.php页面,其中包含header.phphome.phpfooter.php;当点击我们按钮时,GET变量?page = aboutUs is passed to URL and then index.php includes aboutUs.php along with header.php and footer.php`。

但我不希望传递变量,而是希望网址像.../home/.../aboutUs/

还有另一种方法吗?

3 个答案:

答案 0 :(得分:0)

最简单的方法是使用重写。

您可以在此处找到ApacheNginx

的文档

答案 1 :(得分:0)

使用.htaccess制作重写规则。

试试这个:

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)/$ /$1.php

答案 2 :(得分:0)

Options +MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
    RewriteRule (.*)$ /$1/ [R=301,L]
    DirectoryIndex index.php
    ErrorDocument 404 /404-error.php

我认为这应该有效。只是重定向像

<a href="about">about</a>

并且页面应该像PHP about.php

一样