Jump to content
php.lv forumi

Recommended Posts

Posted (edited)

čau un laimīgo jauno!

 

ir adrese.lv, kurai ir savs htaccess un viss strādā

ir folders, piem. tests

vajag - adrese.lv/tests/kautkads-nosaukums atvērtos kā adrese.lv/tests/?q=kautkads-nosaukums

 

tiku līdz

RewriteCond %{REQUEST_URI} ^/tests/
RewriteRule ^(.*)$ http://www.adrese.lv/tests/?q=$1 [L]

 

pie šī varianta tests tiek redirektēts uz tests, bezgalīgi un browseriem tas nepatīk

ja tekstā adrese.lv/tests/ 'tests' nomainu uz citu, tad iet

mēģināju RewriteBase likt, nesanāca

 

 

kā darīt pareizi?

Edited by flasherr
Posted


Options +FollowSymLinks

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]

 

$explode = explode("/", $_GET['page']);

 


$explode[0] = "action";
$explode[1] = "param1";
$explode[2] = "param2"

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...