直到现在我一直在使用GET变量,当点击链接/按钮时,该变量会传递给URL,然后index.php
页面会加载该页面。
例如 - 默认网站加载index.php
页面,其中包含header.php
,home.php
,footer.php
;当点击我们按钮时,GET变量?page = aboutUs is passed to URL and then
index.php includes
aboutUs.php along with
header.php and
footer.php`。
但我不希望传递变量,而是希望网址像.../home/
和.../aboutUs/
还有另一种方法吗?
答案 0 :(得分:0)
答案 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