用.htaccess重写规则

时间:2010-10-13 04:56:46

标签: php .htaccess

假设我的根目录中有两个php文件(可从互联网上获取):index.php和some.php。当有人在mydomain.net访问我的网站时,我希望他们实际访问some.php,并且url中显示的任何其他路径都将作为GET值发送给some.php。我怎么用.htaccess呢?

mydomain.net - > some.php

mydomain.net/index.php - > some.phpα值= index.php的

mydomain.net/somefolder/index.php - > some.phpα值= somefolder / index.php的

1 个答案:

答案 0 :(得分:1)

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)$ some.php?value=$1