下面給大家介紹ThinkPHP5訪問怎么去除/public/index.php,希望對需要的朋友有所幫助!
ThinkPHP5 訪問去除/public/index.php
原訪問鏈接:http://localhost/public/index.php/admin/index/index
設置后訪問鏈接:http://localhost/admin/index/index
一、復制public目錄下的index.php到根目錄
修改內容為:
<?php // 定義應用目錄 define('APP_PATH', __DIR__ . './application/'); // 加載框架引導文件 require __DIR__ . './thinkphp/start.php';
二、在根目錄新建.htaccess文件
文件內容:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L] </IfModule>
ThinkPHP簡介:
ThinkPHP是為了簡化企業級應用開發和敏捷WEB應用開發而誕生的。最早誕生于2006年初,2007年元旦正式更名為ThinkPHP,并且遵循Apache2開源協議發布。ThinkPHP從誕生以來一直秉承簡潔實用的設計原則,在保持出色的性能和至簡的代碼的同時,也注重易用性。并且擁有眾多原創功能和特性,在社區團隊的積極參與下,在易用性、擴展性和性能方面不斷優化和改進。