当前位置:网站首页>About the apache .htaccess file of tp
About the apache .htaccess file of tp
2022-08-02 03:53:00 【auspi12341】
In order to hide index.php in the url, you need to write RewriteRule
View the Server API printed by phpinfo(): Apache 2.0 Handler
View the Server API printed by phpinfo(): CGI/FastCGI
====================================================================
Default:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
=====================================================================
If it is Server API: CGI/FastCGI needs to be modified as:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond%{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
=====================================================================
If the Apache configuration file uses Alias mapping to access the directory
Alias /sports "D:/WorkSpace/Sports/public/"
Need to add Rewritebase /sports
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
Rewritebase /sports
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
边栏推荐
猜你喜欢
随机推荐
The Error in the render: "TypeError: always read the properties of null '0' (reading)" Error solution
如何计算地球上两点的距离(附公式推导)
微信小程序云开发-证件照的实现
Function hoisting and variable hoisting
微信小程序自定义swiper轮播图面板指示点|小圆点|进度条
简单黑马头条项目
C语言 十六进制整数字符串转十进制整数
阿里云服务器如何使用admin账户登录
npm --package.json---require
解决 Zlibrary 卡死/找不到域名/达到限额问题,Zlibrary最新地址
我的小笔记 =》其他东东
阿里云设置域名解析重定向后,无法使用Chrome访问
关于tp的apache 的.htaccess文件
js预编译 GO 和AO
meime模块
我的小笔记 =》原生微信小程序
2.PHP变量、输出、EOF、条件语句
docker中配置mysql 5.7
Baidu positioning js API
js 中this指向









