在htaccess文件上显示索引URL

时间:2014-01-16 17:12:05

标签: .htaccess

我有,这个代码在htaccess文件中:

DirectoryIndex boot.php
RewriteEngine On 
RewriteRule pick.dll boot.php

所以在我的网站的网址中,我没有看到pick.dll和boot.dll我什么都没看到,为什么?..为什么htaccess隐藏文件谁有代码:

DirectoryIndex boot.php

我如何解决这个问题,显示网址?

1 个答案:

答案 0 :(得分:0)

如果您想在浏览器网址中显示boot.php,请使用带R标记的重写规则:

DirectoryIndex boot.php

RewriteEngine On 
RewriteRule ^pick\.dll$ /boot.php [L,R]