location / {
try_files $uri $uri/ /index.php?$query_string;
}
Apache 下一般public(服務(wù)器)/根目錄(虛擬主機) 下都有附帶的 .htaccess
文件, 如果在你的Apache環(huán)境中不起作用,請嘗試下面這個版本:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
fastcgi / localhost:9000 php {
index index.php
}
# ext / .html
rewrite { r .* ext / to /index.php?{query} }
更多建議: