我想更改我网站的网址:
http://localhost/bimbsec/v3/index.php?p=page-name
到
http://localhost/bimbsec/v3/page-name
我可以使用纯PHP函数吗?还是有最好的办法?
答案 0 :(得分:0)
将此文件另存为项目目录中的.htaccess,然后像
一样运行http://localhost/test/test-page
您将获得类似$ _GET var
的测试页面数组([p] =>测试页面)
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?p=$1&
</IfModule>