Jump to content

Confused as Fvck!


RobertP

Recommended Posts

i need some help with the rewrite engine...

 

current url: http://robert83/index.php?action=index&sub=a1
desired url: http://robert83/index/a1

 

but i also need it to work like this (the length of sub (;)'s are dynamic ..)

current url: http://robert83/index.php?action=index&sub=a1;a2;a3;a4;a5
desired url: http://robert83/index/a1/a2/a3/a4/a5

and..
current url: http://robert83/index.php?action=index&sub=a1;a2;a3
desired url: http://robert83/index/a1/a2/a3

 

i am currently using.. but no luck sadly..

RewriteRule ^([\/]?)(.*)/(.*)$ index.php?action=$1&sub=$2

Link to comment
https://forums.phpfreaks.com/topic/260519-confused-as-fvck/
Share on other sites

This is pseudo code based off of what you stated, it will needed tweaked most likely.

 

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(index)(?:/(.*))?$ index.php?action=$1&sub=$2

 

Now this will serve the file like so:

 

index.php?action=index&sub=a1/a2/a3/a4/a5

 

so you will have to do some tweaking on your end to handle the changed delimiter.

Link to comment
https://forums.phpfreaks.com/topic/260519-confused-as-fvck/#findComment-1335288
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.