本文主要是介绍.htaccess配置重写url引擎,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
.htaccess 文件配置
Apache:
<IfModule mod_rewrite.c>Options +FollowSymlinks -Indexes -MultiviewsRewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L] </IfModule>
Nginx:
location ~* (runtime|application)/{return 403; } location / {if (!-e $request_filename){rewrite ^(.*)$ /index.php?s=$1 last; break;} }
这篇关于.htaccess配置重写url引擎的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!