您好,登錄后才能下訂單哦!
這篇文章給大家介紹TP5相關(guān)解決問(wèn)題有哪些,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
- command.php 命令行啟動(dòng)TP5框架需要讀取的文件 - common.php 常用的函數(shù),都寫在這個(gè)文件中 - config.php 配置文件,開啟什么,關(guān)閉什么,都在這設(shè)置 - database.php 連接數(shù)據(jù)庫(kù)時(shí)候讀取的文件,比如用戶名 - route.php 路由文件,美化url的 - tags.php 擴(kuò)展框架的時(shí)候用到
- static 這里放的是css、html之類的靜態(tài)文件 - favicon.ico 這個(gè)是網(wǎng)站圖標(biāo),在標(biāo)簽欄顯示的 - index.php 網(wǎng)站入口文件,所有的請(qǐng)求都會(huì)經(jīng)過(guò)這里 - robots.txt 禁止搜索引擎爬取頁(yè)面的設(shè)置 - router.php 在沒(méi)有部署網(wǎng)站環(huán)境的情況下,配置這個(gè)文件可以讓網(wǎng)站運(yùn)行
- 目錄 只是小寫字母和下劃線構(gòu)成 - 類的文件名以命名空間定義,并且命名空間和類庫(kù)文件所在路徑一致。 - 類的文件采用駝峰,并且首字母大寫,其余文件為小寫加下劃線。 - 類名和類文件名保持一致,采用駝峰命名,首字母大寫。 - 函數(shù)使用駝峰命名,首字母小寫。 - 屬性名采用駝峰,首字母小寫 - 以雙下劃線開頭的函數(shù)或方法為魔術(shù)方法。 - 常量以大寫字母和下劃線命名 - 表和字段必須以小寫字母和下劃線命名方式,不能以下劃線開頭。
修改vhosts.conf
<VirtualHost _default_:80> DocumentRoot "C:\phpStudy\PHPTutorial\WWW\public" ServerName localhost ServerAlias localhost <Directory "C:\phpStudy\PHPTutorial\WWW\public"> #下面被注釋的代碼,用“l(fā)ocalhost”訪問(wèn)時(shí)會(huì)禁止訪問(wèn) #Options -Indexes -FollowSymLinks +ExecCGI Options FollowSymLinks ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost> <VirtualHost *:80> DocumentRoot "C:\phpStudy\PHPTutorial\WWW\public" ServerName www.gohosts.com ServerAlias gohosts.com <Directory "C:\phpStudy\PHPTutorial\WWW\public"> Options FollowSymLinks ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost>
httpd.conf
去掉LoadModule rewrite_module前面的#
AllowOverride None 替換為 AllowOverride All(有多處設(shè)置,需要替換)然后保存
在相應(yīng)的目錄下,添加.htacces文件
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] </IfModule>
添加web.config文件
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="cms"> <match url="^cms/(.*)$" /> <action type="Rewrite" url="/public/cms/pages/{R:1}" /> </rule> <rule name="OrgPage" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="^(.*)$" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="/public/index.php/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
關(guān)于TP5相關(guān)解決問(wèn)題有哪些就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。