是否可以使用.htaccess更改网页的URL,还想使用.htaccess保护文件夹?

时间:2013-05-22 05:26:18

标签: .htaccess .htpasswd

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

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

1 个答案:

答案 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