Apache 伪静态

Posted 张永峰的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 伪静态相关的知识,希望对你有一定的参考价值。

RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

 

RewriteEngine On

RewriteBase /

RewriteRule ^index.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

以上是关于Apache 伪静态的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess转为web.config的操作技巧 apache伪静态转为iis伪静态

apache https 伪静态

IIS安装Apache伪静态插件

Nginx/Apache之伪静态设置 - 运维小结

Apache如何开启Mod_rewrite模块以及PHPWind伪静态(全伪)

.htaccess中带?参数的重定向伪静态写法