溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

TP5相關(guān)解決問(wèn)題有哪些

發(fā)布時(shí)間:2021-12-06 10:57:51 來(lái)源:億速云 閱讀:143 作者:柒染 欄目:大數(shù)據(jù)

這篇文章給大家介紹TP5相關(guān)解決問(wèn)題有哪些,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

TP5相關(guān)解決問(wèn)題

1.默認(rèn)入口文件public,其他文件不允許訪問(wèn)

2.在application內(nèi)部,后臺(tái)一般放在admin內(nèi),前臺(tái)代碼一般放在index內(nèi),遵循MVC架構(gòu)

3.application文件夾中的文件作用

- 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í)候用到

4.public內(nèi)文件作用

- 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)行

開發(fā)規(guī)范

- 目錄 只是小寫字母和下劃線構(gòu)成
- 類的文件名以命名空間定義,并且命名空間和類庫(kù)文件所在路徑一致。
- 類的文件采用駝峰,并且首字母大寫,其余文件為小寫加下劃線。
- 類名和類文件名保持一致,采用駝峰命名,首字母大寫。
- 函數(shù)使用駝峰命名,首字母小寫。
- 屬性名采用駝峰,首字母小寫
- 以雙下劃線開頭的函數(shù)或方法為魔術(shù)方法。
- 常量以大寫字母和下劃線命名
- 表和字段必須以小寫字母和下劃線命名方式,不能以下劃線開頭。

apache配置根目錄

  • 修改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>

apache配置偽靜態(tài)

  • 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>

iis配置偽靜態(tài)

  • 添加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ò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

tp5
AI