URL rewriting module for the Apache web server. It is commonly used for so-called "pretty" URLs, but also provides the power and flexibility to perform various request handling tasks beyond simple substitutions.
0
votes
0answers
27 views
Wordpress htaccess issue with existing file
I have a wp blog where I have some categories, pages, posts and so. This is the URL schema:
mysite/category/category_name
mysite/category_name/post_name
Everything is working fine, but now I'm ...
2
votes
3answers
87 views
Redirect /about to /about.php in .htaccess
First of all, I know there are plenty of similar questions about this around, but
None of them seem to work for me
None of them actually address exactly what I want
What I want is, as the title ...
0
votes
1answer
35 views
URL Routing using RewriteRule
I am trying to create my own PHP MVC framework for learning purpose. I have the following directory structure:
localhost/mvc:
.htaccess
index.php
application
controller
model
view
config/
...
0
votes
1answer
18 views
Regex is deleting the last character
In implementing clean URLs I wanted to map http://www.pikspeak.com/iframe/3/bird?autoplay=true to http://www.pikspeak.com/iframe.php?id=3&img=bird&autoplay=true using the following regex
...
0
votes
0answers
15 views
htaccess Moble Redirect Issue from outside site, direct OKAY
I am needing help with the mobile redirect. I have two htaccess, one for primary domains and ones for mobile domains (m.domain.com)
So redirect OK if go type domain direct URL browser field. But no ...
0
votes
0answers
15 views
A Tool which documents where the mod_rewrite is actually directing to
when I have mod_rewrite active and the browser redirects at a specific URL to another destination but still shows the short URL and hides the real URL - how can I find out the URL it is really going? ...
-2
votes
0answers
31 views
Apache RewriteRule - Page Not Found [closed]
Is anyone knows why my RewriteRule is not working?
I added this following rule in the .htaccess
RewriteRule ^anyname$ group/2 (inside the <IfModule mod_rewrite.c> tag), but it didn't work! ...
0
votes
1answer
34 views
htaccess rewriting dynamic urls
How can I rewrite this url
http://www.example.com/index.php?test=<some dynamic data>
to
http://www.example.com/<some dynamic data>
I have tried
RewriteEngine on
RewriteRule ...
0
votes
3answers
42 views
Using mod_rewrite, how do I remove the path from an url when a user requests it?
Basically what I'm trying to do is change what the url displays in the browser address bar. So if a user types example.com/lang/en I want the address bar to just display example.com removing the ...
0
votes
1answer
31 views
page is displaying error page instead of intended page
This code is really puzzling me as to why this is happening. if i add the [R=302,L]
then my link works perfectly as i would hope. but if i don't add it and i have just [L]
the it goes to an error ...
0
votes
1answer
28 views
symfony1, hosting, document root and apache mod_rewrite
I've read a lot about this but i can't make it work, so, i'm posting a question
I have a Symfony1 project with 2 app(front, admin), the hosting document root is public_html, so the folder structure ...
0
votes
1answer
10 views
RewriteRule not running
I have put a .htaccess file in httpdocs/test/, with two rules:
RewriteEngine On
RewriteRule ^test/reviews/([0-9]+)\-[A-Za-z1-9\-]$ /test/reviews.php?id=$1
DirectoryIndex reviews.php
The ...
0
votes
1answer
17 views
.haccess and dynamicly generated SEO friendly URLs
I'm trying to build a website that may be called from the URL bar with any one of the following examples:
domainname.com/en
domainname.com/zh-cn/
domainname.com/fr/page1
domainname.com/ru/dir1/page2
...
-1
votes
0answers
23 views
Why do these mod_rewrite rules cause a 500 error?
Trying to get this code to work, but it's crashing hard.
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
The url's are supposed to look like this afterwards (for example):
...
0
votes
0answers
28 views
URL Rewriting with Slim
I've just finished writing a basic REST API using Slim and I'm having problems getting URL rewriting to work, as we have our API dispatcher called "api.php" located in the root of our Apache webdocs ...
0
votes
1answer
26 views
how to set default value of query string in .htaccess?
I want to set overridable default query string with index.php
like
example.php/1
I tried
RewriteRule ^([^/]+)/([0-9]+)/?$ index.php?p=1
but didn't get success.
can anybody help me to solve it.
0
votes
1answer
25 views
Redirect whole subfolder to a handler
I have a folder which is in a subfolder from my www directory
like
www/somesub
there i put a htaccess file which has the following rewrite rule in it:
RewriteEngine on
RewriteRule ...
0
votes
1answer
15 views
HTACCESS Redirect (moved folders) - Recursion Error
I got a ready made theme for my site. I am in need to move the images/js/css folder to a specific folder.
Currently it is as such:
|- application
|- assets
|- img
|- css
|- js
|- system
...
0
votes
0answers
52 views
.htaccess RewriteCond REQUEST_URI Dynamic SEO Generated URIs
Ok my eyes and fingers are bleeding now trying to get this stuff to work. Here is a couple examples of incoming URIs I want to test in my .htaccess file.
abc.com
abc.com/en
abc.com/zh-cn/
...
0
votes
0answers
6 views
Apache redirects based on symlinks
In one app, some public image resources are symlinked to alternative names for historic reasons. For example, we might have
a.png
b.png -> a.png
Google's PageSpeed Insight that identical content ...
0
votes
1answer
12 views
.htaccess for identical url
i have this url
http://localhost/sahara/product.php?action=viewcat
http://localhost/sahara/product.php?action=viewsubcat&catparent=40
and the htaccess are
RewriteRule ...
1
vote
2answers
46 views
How to mask a tomcat app behind an apache subdomain?
I have two separate servers: an Apache public server and an internal Tomcat one. I would like our users to be able to use our Tomcat apps without exposing the details of our implementation (actual ...
0
votes
1answer
42 views
HTACCESS causing 500 Internal Server Error
NOTE: The code is not being sanitized here for simple explanation of problem, keeping basics. My production code will sanitize the $_GET before handling.
Here is my .htaccess file:
RewriteEngine on
...
0
votes
1answer
63 views
codeigniter rewrite rule leads to infinite loop
I'm using CodeIgniter, and I'm getting a 500 server error when I try to visit my page.
(https://test_page.com) which redirects to
(https://test_page.com/auth/login).
Notice how
...
0
votes
1answer
27 views
Mod Rewrite problems
I am having some problems with mod rewrite. The server is Ubuntu 12.04, Apache2, Php 5.4.
I want an url like this:
www.website.com/<modelName>/<imageNumber>
And
...
-1
votes
1answer
24 views
mod_rewrite style URL replacement in PHP [closed]
I'm looking for a simple solution to rewrite URL in PHP. The customer wants to store them in a database so I can't use mod_rewrite.
Basically I am looking for a PHP solution to make this happen:
...
2
votes
1answer
19 views
query string gets ignored after mod_rewrite
I am using the following rewrite rule in my .htaccess file to send all requests to the index.php file located at the root:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
...
0
votes
0answers
27 views
Add a RewriteRule for WordPress multisite
I have a brand new WP multisite network (v 3.5.1) on sub-directories. I'm getting an error with the images, where the subsites won't display them properly, but they are being uploaded correctly. I'm ...
0
votes
1answer
25 views
MOD REWRITE (BASE) on WAMP Server
I have an WAMP webserver with Rewrite module activated.
I have all my projects in:
d:/prj/costumer1/www/ (alias: costumer1)
d:/prj/costumer2/www/ (alias: costumer2)
and so on...
For costumer1 I ...
1
vote
1answer
58 views
404 issue with XAMPP/Windows 7
Ok guys this is really driving me nuts....
I have a legacy codeigniter application which used to work perfectly fine in Win XP for many years. Yesterday all our desktops were updated to Win7. I ...
-1
votes
1answer
17 views
Forcing www for part of my site
I'm trying to set up .htaccess to force www for one folder of my site, but not the rest of it. Does anyone know how to do this?
1
vote
2answers
31 views
What's wrong with my RewriteRule? It seems ok, but it doesn't work
I have a rewrite rule on my webpage.
RewriteEngine On
RewriteRule ^(.*) index.php?p=$1 [L]
I want it to work so it rewrites URLs like this:
http://example.com -> index.php
...
0
votes
0answers
34 views
Mod_Rewrite Subdomain Virtual Directory
I have a PHP site that has the following structure:
Root
/img
/img/logo.png
/m
/m/.htaccess
/m/index.php
index.php
.htaccess
What I am trying to achieve is that there should be a site, a ...
0
votes
4answers
45 views
Codigniter Mod_Rewrite not working in WAMP
I use CodeIgniter on WAMP.
The Mod_Rewrite Module of Apache is loaded.
My CI project resides at C:\wamp\www\store
I have copied the rewrite rule from Codeigniter URL documentation (here):
...
0
votes
0answers
30 views
Mod rewrite to redirect to html file unless from a specific link
I have been pulling my hair out on this one, I have trawled SO and tried every suggestion out there on this one,but have had a lot of issue ( stripped css, android works iphone doesnt etc etc )
I ...
0
votes
0answers
27 views
How to modify .,htaccess to redirect people when they click on link
I have some website, on it i want to put link to other external site:
http://zzz.com
When user hovers it - he will see zzz.com but when he actually clicks the url - htaccess will redirect him to ...
0
votes
1answer
55 views
mod_rewrite to change “document root” based on query parameter?
I'm trying to figure out how to set up a mod_rewrite rule so that a request for a page, with a URL parameter appended, determines the root from which that file is served.
Here's the setup. In my ...
1
vote
2answers
46 views
Simple RewriteRule with nginx
I'm trying to write a RewriteRule to make a simple url. I want users to be able to type enter
www.example.com/somepage
and have it take them to
www.example.com/abc/somepage.php
How can this be ...
0
votes
1answer
29 views
Rewriting urls with mod_rewrite - GET variables
I found out I could make clean urls with mod_rewrite. I managed to make pages like /home.php viewable by visiting /home (without .php).
Now, I'd like to turn view_album.php?album_id=23 into album/23
...
1
vote
0answers
17 views
Trouble getting basic mod_rewrite to work
My first question on stackoverflow, and first time with mod_rewrite, apologies if I've broken any rules. =]
I'm starting with two test files in my root web dir and a basic .htaccess rewrite rule as ...
1
vote
2answers
63 views
(htaccess) Rewrite English names of php files to their Dutch equivalents
I would like to rewrite the English names of php files to their Dutch equivalents.
For example: someurl.com/news.php?readmore=4#comments should become someurl.com/nieuws.php?leesmeer=4#kommentaar. ...
0
votes
2answers
15 views
Add an exception to .htaccess RewriteRule
I added the folowing code to main .htaccess
# BEGIN
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)/[0-9]+/?$ /$1/? [L,R=301]
# END
I'd like to add an exception to any link ended with .../page/
0
votes
0answers
26 views
Rewrite rule for PHP page
I need to setup a rewrite rule on my Joomla site which redirects from /recorddata to /recorddata.php (I'd like to hide the information about the file extension).
I've added this to my .htaccess ...
1
vote
1answer
14 views
Wordpress Mod Rewrite Same Server
I've been researching this for got to be around 6 hours now (had I known I'd spend this long I would have read the manual from start to finish to learn things in-depth) and out of desperation I'm ...
1
vote
2answers
22 views
Htacces rewrite rules and conditions
I have this rule which works perfectly
RewriteEngine on
RewriteRule ^([^/]+)/([^/]+) /demo/index.php?category=$1&subcategory=$2
this converts my link from
...
1
vote
1answer
21 views
rewrite rule substitute argument
Is there any difference between
RewriteRule ^([a-zA-Z0-9\/\-_]+)$ http://www.example.com/index.php?url=$1 [QSA,L]
and
RewriteRule ^([a-zA-Z0-9\/\-_]+)$ index.php?url=$1 [QSA,L]
In the first one ...
0
votes
0answers
50 views
PHP Router / .htaccess
I am trying to implement the router class JREAM http://jream.com/lab/route
Files are at https://bitbucket.org/JREAM/route/src
Everything seems to be working fine except for some 301 redirects we ...
1
vote
2answers
43 views
Apache Rewrite Rule with Habari Default Rewrites
I've switched my blog from one CMS/Blog System to using Habari which has some default Apache rewrite rules and I'm trying to redirect all the old article URL's from /articles/article-name to ...
0
votes
1answer
21 views
.htaccess change domain but keep path
i don't even know whether this is possible or not.
i've 3 domain names:
mytest.com
test88.com
test99.com
mytest.com is the main domain where all the content is located. in my case it is wordpress ...
0
votes
1answer
27 views
Overriding FilesMatch in subdirectory
The root of my website includes FilesMatch in the .htaccess to make sure I do not rewrite those files.
<FilesMatch ...


