我用它为已经上传的子目录创建htpassword。
我的网站名称是http://thisite.com
,我将文件夹名称命名为protected
。将会是http://thisite.com/protected
如果我在下面使用htaccess
,则可以将htpassword
添加到protected
文件夹中,并且它不再返回404页。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./ /index.php [L]
</IfModule>
但是我的问题是我的Sitemaps插件无法再访问。它的链接是:
http://thisite.com/sitemap.xml
如何编辑上面的htaccess代码以使站点地图正常工作?
非常感谢。