Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Apache help
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Apache help

Hi guys, I would like to know what rule can I add to my apache config in order to do:

index.php/notice/video/page/video-name-1 -> /notice/video/page/1
index.php/notice/video/page/video-name-1?p=2 -> /notice/video/page/2
index.php/notice/video/page/video-name-1?p=3 -> /notice/video/page/3

and so.

I tried with:

RewriteRule ^/notice/video/page/(.*)?$ iindex.php/notice/video/page$1 [NC,L]
RewriteRule ^/notice/video/page/?$ index.php/notice/video/page/$1 [NC,L]

Thank you all.

Sign In or Register to comment.