标签: apache .htaccess nginx
IndexIgnore * Options -Indexes Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule . index.php [QSA,L]
我使用过自动转换网站,但由于某些原因,它无效。
答案 0 :(得分:0)
你可以在root位置重写这个:
location / { rewrite ^/(.*)$ /index.php?$1 break; ... }