我試圖改變我的.htaccess文件,所以如果我去:修改.htaccess使URL變量=真正改變爲URL /變量?
http://www.example.com/index.php?login=true
,它去http://www.example.com/login
。
我目前有這個代碼,它刪除index.php(這使得上面看起來像http://www.example.com/?login=true
)。
RewriteEngine On
#remove index.php
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]
RewriteCond %{THE_REQUEST} ^GET
我肯定會需要其他變體 - 基本上任何有東西=東西 – Jared