Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
但我也希望每个页面都重定向到 page.php,例如:
我->我.php
博客-> blog.php
测试-> test.php
我不知道重定向是否是正确的词,因为我想要的是我们调用 X 并且它打开 X.php 但不显示扩展名 (.php)
希望大家可以帮助我。
谢谢
创建一个.htaccess文件并将其放入其中:
.htaccess
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php
这样,诸如 ,domain.com/blog之类的 URL 将默默地附加.php到文件名(即 loading blog.php)。
domain.com/blog
.php
blog.php