原始链接= https://api.thekashmirmonitor.net/index.php/posts?categories=192
我想要https://api.thekashmirmonitor.net/posts?categories=192
在这里我只想删除index.php
答案 0 :(得分:0)
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
答案 1 :(得分:0)
您可以将其放入.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]