nginx 重定向到index.php

location /keywords {
                index index.php;
                try_files $uri $uri/ /keywords/index.php?q=$uri&$args;
 
 
apache:
.htaccess
 Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
#RewriteCond %{REQUEST_URI} !^.*(\.htm|\.xml|\.css|\.js|\.gif|\.png|\.jpg|\.jpeg|\.GIF|\.PNG|\.JPG|\.JPEG|\.DAT|\.dat|\.php)$|.*(statics).*|.*(upload).*
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d # otherwise forward it to index.php
RewriteRule . index.php
上一篇:C++ Primer 笔记 第三章


下一篇:C++ Primer笔记