Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Cgi link error
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Cgi link error
Cgi link error
09-08-2007 11:05 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I have a website in a folder on my cgi server, I need to direct a url to that folder. I have managed to do this by using the following .htaccess code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.rapidreality.co.uk$ [nc]
RewriteCond %{REQUEST_URI} !^/Product/
RewriteRule (.*) /Product/$1
It links to the index page but none of the links work. Can anyone help?
I am using an open source cms www.cmsmadesimple.org
You can find the site here www.rapidreality.co.uk
Thanks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.rapidreality.co.uk$ [nc]
RewriteCond %{REQUEST_URI} !^/Product/
RewriteRule (.*) /Product/$1
It links to the index page but none of the links work. Can anyone help?
I am using an open source cms www.cmsmadesimple.org
You can find the site here www.rapidreality.co.uk
Thanks
Message 1 of 3
(3,071 Views)
2 REPLIES 2
Re: Cgi link error
09-08-2007 11:10 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.rapidreality.co.uk$ [nc]
RewriteCond %{REQUEST_URI} !^/Product/*
RewriteRule (.*) /Product/$1
note the '*' on the end of the third line.
The * should get matched with the $1 on the 4th line.
Barry
Message 2 of 3
(866 Views)
Re: Cgi link error
09-08-2007 11:23 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Tried that but it still wont work!
Thanks for you help though.
Thanks for you help though.
Message 3 of 3
(866 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page