Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the following .htaccess rules:

RewriteRule ^!([a-zA-Z0-9_-]+)$ index.php?p=$1
RewriteRule ^!([a-zA-Z0-9_-]+)/$ index.php?p=$1
RewriteRule ^!([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$ index.php?p=$1&s=$2
RewriteRule ^!([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/$ index.php?p=$1&s=$2

In order to rewrite the url from this: /index.php?p=SOMETHING&s=SOMETHING

To this: /SOMETHING/SOMETHING

The problem is - I am using relative urls for pretty much everything - css styles, scripts, images, etc. And the current htaccess rules break the urls, cause they are trying to access files from a realtive path.

So I would like to know if there is any way to be able to still use these rules and keep the relative links working at the same time.

Any help is much appreciated!

share|improve this question

1 Answer

up vote 1 down vote accepted

You need to include the URI base in the header of your pages. You can add something like this in your page headers (inbetween the <head> </head> tags:

<base href="/">

Either that, or you can change all your links to absolute.

share|improve this answer
Sweet! Bunch of thanks! Saved my life! – Konstantin Levin Jan 23 at 1:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.