0
votes
0answers
46 views

Apache or PHP rewriting my URL to IP Address

I have a PHP/HTML5 app that requires an application.ini file parse the URL to determine a usage path. The DNS is configured correct, but when I attempt to hit the page I see that the domain name is ...
0
votes
1answer
40 views

ZEND .htaccess, redirecting to www and index.php

this is my problem: Goal: redirect all non-www queries to www (permanent redirection if possible), AND also all queries to index.php (for proper work of Zend framework) Issue: .htaccess not ...
0
votes
1answer
74 views

PHP Zend Framework Application needs index.php in URL to operate on CENTOS

The application is only working when I add "index.php" to the end of the URL. I am using CENTOS. How do I remove this, so I can for example go to http://server/admin/dashboard instead of ...
1
vote
2answers
63 views

htaccess non-www to www while keeping exact url

Im using the following in my htaccess RewriteCond %{HTTP_HOST} !^www RewriteRule ^(.*)$ http://www.website.com [R=301,L] This works except that i have urls like this website.com/name?query=1 The ...
0
votes
1answer
47 views

zend frame work index action giving 404

i got a strange problem today i tried to fixed it by google no luck so far. problem is i have a IndexController.php file in zend framework app and it has simple action called about but when i tried ...
0
votes
2answers
73 views

Apache .htaccess RewriteCond to exclude maintenance file and zend backoffice

I have to put a website in maintenance during a big data import. Import is done in the backoffice, so I need to put the frontoffice in maintenance but not the backoffice Have have that in my ...
0
votes
0answers
45 views

Fixed address bar url zend framework app

So first of, hi, I have probably a simple issue but I'm not expert enough to figure out what the problem is. I just deployed a zend framework application on a debian server. I have dotster as ...
1
vote
1answer
70 views

Changing $_SERVER['REQUEST_URI']

i tried to construct a RewriteRule in my .htaccess to get a more pretty URL for displaying a thread forum using Zend Framework. Target URL is: /forum/display/thread/i/1 What I want: ...
0
votes
0answers
54 views

Force RewriteRule to use result of previous RewriteRule

I am looking for a way to force a RewriteRule in an .htaccess file to use the result of a previous RewriteRule. I have the following rule: RewriteRule ^this-controller/this-action.*$ ...
0
votes
0answers
222 views

nice and SEO friendly url zend framework php

What's the best approach to generate nice URLs using Zend Framework? Without Zend Framework and with MVC pattern I'd just use .htaccess: RewriteEngine on RewriteBase / RewriteCond ...
0
votes
1answer
93 views

Zend Framework - A link to images causing issue with rewrite rules

I have an issue in that I am trying to simply display an image within my images folder in a new window via an anchor link with target=blank. I added the rewrite rule to the public folders .htaccess ...
0
votes
0answers
112 views

Redirection with htaccess in zend framework ( page not found )

Hello I am working on a zend framework application. Its working fine on my localhost but after uploading on server. I am unable to access any controller action. Its showing me this error Not ...
4
votes
2answers
201 views

Using .htaccess to bypass Zend Framework and run different framework in sub directory

I'm trying to run a non-Zend php application within a sub directory of a Zend site. I'd like to bypass the Zend application for all files within the sub directory '/branches' in .htaccess. So far non ...
7
votes
1answer
111 views

mod_rewrite select a folder for the domain

Situation I'm using Zend framework, and thus attempt to call the folder by address ends in a fiasco and we gets the error: 'Invalid controller specified'. I needed to hook up additional forum to ...
0
votes
0answers
74 views

Multiple clients on the same domain separated by folder with Apache .htaccess and Zend Framework

I have a Zend Framework application which is implemented for several clients. Currently each client gets a separate domain with its own SSL certificate. What I'm trying to achieve is to use the same ...
0
votes
1answer
111 views

RewriteRule for sitemaps in Zend Framework

I have the following .htaccess rules: RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ...
0
votes
1answer
447 views

Zend remove public/index.php/ from URL using mod_rewrite [duplicate]

Possible Duplicate: Zend project public name in url Im new to Zend and im trying to change the URL. My project is build with MVC, and my URL is like this: ...
0
votes
0answers
205 views

How can I create user-friendly URLs in the SocialEngine Group plugin?

I have a Socialengine-based website with the Groups plugin and I would like to change the display of the Group links to more SEO friendly links. For example, I would like to change the following: ...
0
votes
1answer
108 views

How to debug in Zend Studio with Mod_Rewrite?

I am working on a PHP web project and want to debug it locally. The website is designed with mod_rewrite such that a request to www.mysite.com is rewritten to www.mysite.com/fitch/index.php?cmd=home. ...
0
votes
0answers
146 views

Mod_Rewrite and Zend Server (Windows 7)

I am attempting to edit a PHP website with a custom CMS using Zend Server and Zend Studio. The website uses mod_rewrite and contains many entries for it in .htaccess. On the live website, if someone ...
1
vote
1answer
261 views

Disable SSL on certain URL Zend Framework

I have an Zend Application that generate URL like that http://miapp.com/module/controller/action/params/values I want to exclude from SSL a certain URL that has a param (print or download) ...
0
votes
0answers
190 views

RewriteCond to ignore url with index.php in it?

Trying to allow a url to ignore a rewrite rule RewriteBase / RewriteEngine on # always make site use www. RewriteCond %{HTTP_HOST} ^domain.com RewriteRule (.*) http://www.domain.com/$1 [R=301,L] # ...
1
vote
1answer
446 views

Rewrite all URL to SSL except specific folders with Zend Framework

thanks in advance for any help. I have Zend Framework setup for our web app, and has worked fine using a basic SSL redirect until now. We'd like to redirect all URL's to SSL, except a couple paths. ...
0
votes
0answers
167 views

htaccess rewrite with Zend Framework

i want to rewrite a url like localhost/public/5/issue?readerVersion=2.0 to localhost/public/interface/getissuefile/projectID/5/readerVersion/2.0 I tried this: RewriteCond ...
3
votes
2answers
143 views

Zend Rewrite rules aren't working

I've set up zend this evening, and the default index page works ( http://home.mitheren.com/399a4/public/ ). I've since tried adding a new Action on that controller, but I keep getting a 404 error. ...
0
votes
1answer
411 views

Configure Zend Framework to ignore other directories and work in a subdirectory?

I have a default Zend Framework application installed under /var/www/html/zend_example. The public directory is: /var/www/html/zend_example/public. I also have other non-zend sites in /var/www/html. ...
0
votes
1answer
610 views

mod rewrite for zend framework with 2 public folders

Hello I have the following files structure: /public_html(docroot) - /public /css /js index.php - /application - /library Note: I cannot change this structure. ...
3
votes
2answers
153 views

Is it possible to limit the number of $_GET parameters to a Zend Framework application using Zend_Cache_Backend_Static to cache static pages as HTML

I've just set up static page caching using Zend_Cache_Backend_Static to serve cached html files in my application, which is working great. The only concern I have is down to the way it caches files ...
0
votes
3answers
613 views

Zend Framework /index/ redirect throught htaccess to avoid content duplication

I'd like to know if it is possible to add a rule to the htaccess of my ZF app to redirect all the URLs that ends with the segment /index/ (such as http://domain.ext/index/) to the same URL without the ...
2
votes
1answer
606 views

URL-encoded parameter breaks default Zend rewrite rules

I'm using the standard Zend /public/.htaccess file (shown below). At the moment I'm attempting to forward the user to a specific controller/action, and supply the on-success-redirect URL as a URL ...
1
vote
1answer
408 views

Force SSL in .htaccess or in my PHP code, results in redirect loop error

I am attempting to force the use of HTTPS, I am hopeful to accomplish this with the .htaccess file, but have also attempted to use code. I am using Zend framework, and have tried to use this code in ...
1
vote
1answer
1k views

Zend Framework Giving 404 Error For Controllers

I am using Zend Framework on Ubuntu 11.10 (my local dev machine). When I navigate to my application with this URL, the front page/index controller works fine: http://localhost/myapp/public So I ...
0
votes
1answer
361 views

Using mod_rewrite with Zend Framework to remove “public” from my URL

For some reason I get public in my url like this: http://www.mywebsite.com/public/ This should be the index page so how do I get rid of the public so it just reads: http://www.mywebsite.com/ I ...
0
votes
1answer
287 views

.htaccess remove a part of the url in PHPthumb

I did the research and couldnt find anything useful I have a problem with phpthumb , ...
0
votes
1answer
247 views

Mod rewrite virtual host and Zend

My Apache config: DocumentRoot /var/www <VirtualHost *:80> Alias /T "/var/www/Test" <Directory /var/www/Test> Options Indexes FollowSymLinks MultiViews ...
0
votes
2answers
280 views

Performance, Zend Route vs Apache mod_rewrite

How faster is mod_rewrite, compared to Zend Router? Should one give up using Zend Router and do the same things with rewrite rules in apache's virtual host definitions using mod_rewrite? Is the ...
0
votes
1answer
210 views

.htaccess - rewrite user login in url

I need to rewrite URL with user login and i use Zend Framework. .htaccess of ZF project are follow: RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] ...
3
votes
1answer
483 views

How does Zend parse URL in a front controller using mod_rewrite?

I can't figure out how the Zend Framework controls routes. I am actually trying to create my own controller/route class, wrote the same code as Zend reccomends for .htaccess to rewrite to an index.php ...
0
votes
3answers
663 views

Zend Framework - URL's not working

I uploaded my site to the live environment and the default index/index works just fine. I have filtered out the index.php file using RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] ...
1
vote
2answers
3k views

mod_rewrite in <Location /> in apache conf causing rewrite in .htaccess file not to work?

I am using zend framework, which has a nifty example .htaccess used for redirecting non-existing locations to index.php to be processed by the framework: RewriteEngine On RewriteCond ...
0
votes
1answer
360 views

Mod rewrite rules for hosting multiple projects using Zend Framework

I have several small projects I want to host on single virtual host using Zend Framework. The structure is: apps/ testapp1/ application/ index.php, testapp2/ ...
2
votes
2answers
250 views

Zend Router chaining problem with subdomain

I have a $siteRoute for subdomains: $siteRoute = new Zend_Controller_Router_Route_Hostname( ':siteSlug.test.com', array( 'module' => 'site', ), array('siteSlug' => ...
1
vote
2answers
4k views

Different folder as website subfolder

I need some help with URL rewriting. The case is similar with this one. I have a working Zend Framework site. Now I must add a blog in Wordpress (also working). I've chosen not to indulge in ZF ...
1
vote
1answer
124 views

Help creating Zend Framework Redirect

I'm trying to create a mod rewrite expression to redirect from localhost/1234 to localhost/controller/action?param=1234. I have the following in my bootstrap.php, which redirects all requests in the ...
1
vote
1answer
284 views

Query regarding subdomain redirection in Zend Framework

I was looking for an approach using Zend Framework - similar to sites like bit.ly and tinyurl - where I can take a request to a subdomain and store the subdomain in a variable. For instance, a ...
0
votes
2answers
1k views

Running Zend Framework from within a folder with .htaccess rules

Greetings. Basically, I'm trying to run a Zend Framework application (multiple of them, actually) from within folders -- but without specifying the public directory. I know this sounds dirty but I ...
1
vote
1answer
337 views

Basic setup of LAMP with CentOS. Why won't Zend Framework's Router will work?

So I have a basic web server setup with a LAMP stack on CentOS. It has mod_rewrite and all the basic modules. The routing I have used is working on other servers and locally. But when I try to use the ...
1
vote
3answers
1k views

Running a ZendFramework project inside a subdirectory

I have a ZendFramework project that I would like to run inside a subdirectory. Currently my document root is at /var/www and the project is at /var/www/project with the various folders (controllers, ...
2
votes
1answer
521 views

url suffix in Zend Framework

I'm trying to add a .html suffix to my urls in zend. I was wondering the best way to do this. I'd like all routing/url generation to automatically handle this. For example Default: ...
0
votes
2answers
371 views

Pointing Multiple Domains to Different Folders

I tried to my limit. Mod_rewrite had been such a nightmare. My last try is the code bellow and even with www.water.com working I could not make www.wind.com do the same. In the mod_rewrite log what I ...

1 2