请教这段.htaccess里的伪静态规则代表什么意思
程序员文章站
2022-03-11 17:57:16
...
请问这段.htaccess里的伪静态规则代表什么意思?
/q_login-qq_login.html 这样的网址原来的动态网址应该是什么呢?
奇怪,这段网址没有自动跳转,页面一片空白!请指教!
------解决思路----------------------
如果目录存在q_login-qq_login.html文件就展示此文件
如果不存在 则执行 index.php?/q_login-qq_login.html
------解决思路----------------------
這個是thinkphp的.htaccess rewrite
RewriteCond %{REQUEST_FILENAME} !-d 不是目錄
RewriteCond %{REQUEST_FILENAME} !-f 也不是文件
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] 重定向到index.php處理
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
/q_login-qq_login.html 这样的网址原来的动态网址应该是什么呢?
奇怪,这段网址没有自动跳转,页面一片空白!请指教!
------解决思路----------------------
如果目录存在q_login-qq_login.html文件就展示此文件
如果不存在 则执行 index.php?/q_login-qq_login.html
------解决思路----------------------
這個是thinkphp的.htaccess rewrite
RewriteCond %{REQUEST_FILENAME} !-d 不是目錄
RewriteCond %{REQUEST_FILENAME} !-f 也不是文件
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] 重定向到index.php處理
相关文章
相关视频
上一篇: html文档类型声明怎么写
下一篇: 10款PHP开源商城系统汇总介绍