# -FrontPage-
#<Limit GET POST>
# order deny,allow
# deny from all
# allow from all
#</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthUserFile /home1/tenleiye/public_html/_vti_pvt/service.pwd
AuthGroupFile /home1/tenleiye/public_html/_vti_pvt/service.grp
# Use PHP5 as default
AddHandler application/x-httpd-php5 .php
AuthName tenleiyen.com
#IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<IfModule mod_rewrite.c>
RewriteEngine On
# Force www
RewriteCond %{HTTP_HOST} ^tenleiyen\.com
RewriteRule ^(.*)$ http://www.tenleiyen.com/$1 [R=permanent,L]
# Do not change or site will be f*ked. Restrict all except the list below, redirecting all traffic to the index.php
RewriteCond $1 !^(index\.php|1\.ico|favicon\.png|apple-touch-icon(.*)|crossdomain\.xml|robots\.txt|css|js|images|uploads|videos|download|sitemap\.xml)
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
以前的程序员给我写了一个可爱的注释,表示我无法更改权限。如果我添加一些东西,甚至从中删除一个片段,RewriteCond
它将 404。
我不能:
- 使用根目录,
sitemap.xml
读一读,1.jpg
在根目录中放置一个文件并查看它,- 将我的网站管理员工具
.html
文件放入要读取的根目录中。
一切都将转到 index.php 文件,我所能做的就是使用指定的文件夹。