Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
rewrite rules in .htaccess file help needed
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
- :
- rewrite rules in .htaccess file help needed
rewrite rules in .htaccess file help needed
02-07-2011 5:48 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Hi,
I have an application build on Zend framework with a typical Zend Framework .htaccess files. I installed the app on many servers, but I completely cannot install it on your server. Obviously the problem must be with .htaccess rules. Could someone have a look and modify them? This can be helpful for others trying to install Zend apps. Thanks
I have an application build on Zend framework with a typical Zend Framework .htaccess files. I installed the app on many servers, but I completely cannot install it on your server. Obviously the problem must be with .htaccess rules. Could someone have a look and modify them? This can be helpful for others trying to install Zend apps. Thanks
RewriteEngine On
###### rewrite base
RewriteBase /cpbc/public/.
###### rewrite conditions
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
###### rewrite rule
RewriteRule ^.*$ index.php [NC,L]
Message 1 of 2
(961 Views)
1 REPLY 1
Re: rewrite rules in .htaccess file help needed
03-07-2011 11:54 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Assuming that .htaccess file is in the /cpbc/public folder try setting the RewriteBase line to
The file needs to be uploaded as ASCII with access permissions set to 0640.
Have you set file and folder permissions as described in the CGI platform upgrade FAQ?
RewriteBase /cpbc/public
The file needs to be uploaded as ASCII with access permissions set to 0640.
Have you set file and folder permissions as described in the CGI platform upgrade FAQ?
David
Message 2 of 2
(279 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
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- rewrite rules in .htaccess file help needed