Jump to content

Rewrite Root Dir


onlyican

Recommended Posts

Hey

 

I am setting a website and the methodology we use, we have the Websites in a sub folder called /website

 

But page calls have to come from the root

 

For example

www.example.com/about.htm calls page /website/about.php

 

Easy fix

RewriteCond $1 !^website/
RewriteRule ^(.*).htm /website/$1.php [L]

 

But I have an issue when someone goes to

www.example.com

I want to load the page /website/index.php

BUT, I want to redirect / to /index.htm

Due to the fact that Search Engines will see / and /index.htm as 2 different pages

 

How would I do this?

 

Link to comment
https://forums.phpfreaks.com/topic/203509-rewrite-root-dir/
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.