Ben URL adresi. Htaccess dosyasında aşağıdaki kullanarak parametre metnin içine gittikten sonra tüm test için Apache rewrite_mod kullanıyorum
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?text=$1 [L,QSA]
which works if I have www.example.com/some_text
but doesn't when I have www.example.com/some_text/some other text
I want to have in the text parameter the whole request: "some_text/some other text" not only "some other text".
Bu yapılabilir mi?