Tagged Questions

1
vote
2answers
17 views

.htaccess mod_rewrite rule not working in Ubuntu

My apologies if this is an easy one. I have Googled it up the hizzy to no avail. I am running Ubuntu 9.04, Jaunty Jackelope and Apache2. After much trouble, I finally enabled mod_ …
0
votes
2answers
32 views

.htaccess Redirect non-WWW to WWW preserving URI string

I'm running the CodeIgniter platform, which uses .htaccess to accept URLs like http://www.mysite.com/controller/function/argument I currently use some .htaccess rewrites, namely …
1
vote
2answers
28 views

Mod Rewrite Optional Parameters

I have a fairly complex set of rewrite rules to give my site pages pretty URLs. Right now to deal with paging of search results I'm using 2 rewrite rules: RewriteRule ^search/([0- …
0
votes
1answer
15 views

External form causing wordpress 404 error

I have a file outside a Wordpress install that contains a form that submits to itself. I can access and fill the form out, without validation the form submits and reloads as expec …
0
votes
1answer
28 views

.htaccess rewrite to default language folder?

I have my site broken down into several folders by language: / /en/ index.php about-us.php faq.php ... /fr/ index.php about-us.php faq.php ... …
0
votes
1answer
28 views

Mod_rewrite invisibly: works when target is a file, not when it’s a directory.

I have this rewrite rule that turns foo.com/test (or foo.com/test/) into foo.com/test.txt: RewriteRule ^test/?$ test.txt [NC,L] It works perfectly and, importantly, never reveal …
0
votes
1answer
26 views

.htaccess for clean URL not working

I am working with PHP and htacess for the first time. I am passing a variables in a query string to a URL and want this URL to look clean. Please help. .htaccess file RewriteEn …
0
votes
2answers
49 views

How do I redirect to my same URL without getting a too many redirects error?

I need to redirect users from http://myurl.com/Login.action to http://myurl.com/app/Login.action I tried this but I get an error saying I get too many redirects. RedirectMatch ([ …
0
votes
3answers
38 views

RewriteRule with string starting “http://”

Hi, I'm having problems working out how I can do the following using htaccess: http://isitup.org/http://example.com => http://isitup.org/example.com I think the problem is the s …
0
votes
2answers
13 views

Parsing Mod-Rewrite

Hello, I'm trying to get two parameters with mod-rewrite. I tried to split them with "-" but unfortunately it returns last word as second parameter. /ders/ilkogretim-matematik /d …
0
votes
5answers
43 views

what does this rewrite actually do ?

RewriteCond %{REQUEST_URI} ^/new/ RewriteRule ^(.*)$ new.php?title=$1 [L,QSA] im confused as to what this does.... what does the REQEUST_URI do ?
1
vote
6answers
77 views

Accessing URLS by www.example.com/page instead of www.example.com/page.php

What handles the disabling of the extension? Is it APACHE or the PHP install? How would one go about configuring the web server where the .php extension is not required? Is there a …
0
votes
1answer
42 views

Removing .php with mod_rewrite

I want to rewrite all my URLs to hide the .php extension. A general rule that adds .php to all URLs obviously won't do, so I want this rule to be conditional on the fact that The …
0
votes
2answers
44 views

mod rewrite howto

I use the below mod rewrite code for urls like: www.site.com/play/543 RewriteEngine On RewriteRule ^play/([^/]*)$ /index.php?play=$1 [L] How can I expand on this so I can have a …
0
votes
2answers
36 views

Mod rewrite question (really a regex problem)

Ive started out with the most basic rewrite there is, take any request and give it to my index page: RewriteEngine On RewriteRule ^.*$ index.php [L,QSA] Im trying to change it n …

1 2 3 4 5 53 next
15 30 50 per page