Avatar of gr1z
gr1z
 asked on

Mod_Rewrite rule help

Greetings!

I'm trying to write a custom rule that I can't seem to figure out.

Example:

http://domain/sections/time/  ---> should go to http://domain.com/#/sections/time/

http://domain/sections/time/invoices  ---> should go to http://domain.com/#/sections/time/invoices

/sections/whatever/ ---> #/sections/whatever/

/sections/time/invoices/today/tomorrow/ --->  #/sections/time/invoices/tomorrow/

I don't know how deep the folders will get... basically just wanting to add a pound sign in front of anything that's in /sections/.

Please help!
Apache Web Server

Avatar of undefined
Last Comment
aliganjei

8/22/2022 - Mon
gr1z

ASKER
What we're trying to do is prevent a user from directly accessing these pages without the pound sign.

We're using some jquery stuff so that we have basically a single page to server hundreds of other pages.

The problem right now is a user could go to /sections/time/ and see the page directly... we want to prevent this by rewriting the url to have a pound sign.
ASKER CERTIFIED SOLUTION
pcunite

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
gr1z

ASKER
redirectMatch 301 ^domain\.net$/section/^.*$ /#/section/$1


This works... if I go to http://domain/sections/time it goes to http://domain/#/sections/time

BUT

If I go to http://domain/sections/time/calendar it doesn't redirect and I can access the file directly as if it's not working.
gr1z

ASKER
And actually the part that does work... has a bug...


This works... if I go to http://domain/sections/time it goes to http://domain/#/sections/time

BUT if you do this... you can directly access it still

This works... if I go to http://domain//sections/time
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
SOLUTION
David S.

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
aliganjei

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.