我想使用.htaccess将网页网址http://www.xyz.com/in/index.php?mpid=page1更改为http://www.xyz.com/in/page1。
还想用用户名和密码保护我的文件夹。
答案 0 :(得分: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