我遇到問題了。我希望將URL從「index.php?page = somepage」重寫爲寫入「somepage」。Nginx重寫index.php?page =聯繫人只需聯繫
這究竟是怎麼回事在.htaccess如果它可以幫助
RewriteEngine on
RewriteRule ^(\w+)$ index.php?page=$1 [L,NC,QSA]
RewriteRule ^(\w+)+\/$ index.php?page=$1 [L,NC,QSA]
服務器塊:
server {
listen 80;
listen [::]:80;
server_name domain.com;
root /home/www/domain.com;
index index.php index.html index.htm;
location/{
try_files $uri $uri/ =404;
}
location ~ \.php$ {
try_files $uri =404;
rewrite ^/(w+)$ /index.php?page=$1 last;
rewrite ^/(w+)+/$ /index.php?page=$1 last;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
提供你的整個'server'塊吧。如果看以下問題的評論,我會建議其他事情正在進行。 –
@JoeDoherty在問題中添加了服務器塊。 –
不要重寫,它仍然會工作,請嘗試刪除在php塊中的兩個重寫命令。 – Satys