在xampp中将Default Index.php页面更改为“ index.do”

时间:2018-09-04 10:27:17

标签: xampp adsapi-php.ini

我想将.php扩展名更改为.do仅主页。使用xampp服务器。
我不知道如何设置此类型设置。
我想在httpd.conf文件中添加index.do。并重新启动xampp之后。 然后页面是排泄的,但PHP代码无法正常工作。  enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

    `step 1 Open httpd.conf file.
    step 2 add index.do 
    <IfModule dir_module>
        DirectoryIndex index.do index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
                      default.php default.pl default.cgi default.asp default.shtml default.html default.htm \
                       home.php home.pl home.cgi home.asp home.shtml home.html home.htm
    </IfModule> 

step 3: restart xampp

step 4: create .htaccess rule

AddTyp application/x-httpd-php .do

`