0

我想使用 .htaccess将网页 URL http://www.xyz.com/in/index.php?mpid=page1更改为http://www.xyz.com/in/page1 。

并且还想用用户名和密码保护我的文件夹。

4

1 回答 1

1
AuthType Basic
AuthName "Protected Area"
#path to htpaswd
AuthUserFile /path/to/.htpasswd
Require valid-user

RewriteEngine on
RewriteCond %{REQUEST_URI} !^in
RewriteRule /in/(.+) in/index.php?mpid=$1
于 2013-05-22T07:51:28.927 回答