开发者

Looking for some guidance on rewriting URL's using PHP and/or htaccess

开发者 https://www.devze.com 2023-03-11 05:10 出处:网络
I want rewrite the URL using 开发者_StackOverflowPHP and/or .htaccess for when a user goes to http://mysite.com/profile they are acctually accessing http://mysite.com/index.php?page=profile

I want rewrite the URL using 开发者_StackOverflowPHP and/or .htaccess for when a user goes to http://mysite.com/profile they are acctually accessing http://mysite.com/index.php?page=profile

I'm a litte confused how to do this. Is this practice a good idea?


If mod rewrite is activated this should work in the .htaccess:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?page=$1
0

精彩评论

暂无评论...
验证码 换一张
取 消