Jump to content
php.lv forumi

mod_rewrite un /www/folers/


anonīms

Recommended Posts

izmantojot mod_rewrite

 

(pašlaik netieku pie sava htaccess, bet kods ir apmeram tads)

RewriteRule ^/(*)/?$ index.php?page=$1 [L,N]

 

tātad ejot ?page=daba tiek izmantots www.manalapa.lv/daba/ bet atkal ir cita lieta saistībā ar to, ka man uz hosta stāv vel citas web lapas, piem /gribu_grapu/ un tajā mājaslapā es netieeku iekšā jo htaccess uzskata, ka es vnk gribu iet uz ?page=gribu_grapu.

Vai to ir iespējams novērst un izdarīt kaut kā tā, lai es tieku iekšā arī subfolderos?

Link to comment
Share on other sites

nedaudz savādāks. Tavus [NC OR] pieliku, bet nekas nemainas.

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z_]+)/?$ index.php?page=$1 [QSA,L]

Edited by anonīms
Link to comment
Share on other sites

man liekas tā arī bija :)

 

RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla.*
RewriteRule  ^/$				 /homepage.max.html  [L]

RewriteCond  %{HTTP_USER_AGENT}  ^Lynx.*
RewriteRule  ^/$				 /homepage.min.html  [L]

RewriteRule  ^/$				 /homepage.std.html  [L]

Link to comment
Share on other sites

×
×
  • Create New...