A URL rewrite engine is software that modifies a web URL's appearance (URL rewriting). Rewritten URLs (sometimes known as short, fancy URLs, or search engine friendly - SEF) are used to provide shorter and more relevant-looking links to web pages. The technique adds a degree of separation between ...
0
votes
1answer
18 views
Apache URL Rewrite: Dealing with Two Similar Rules
Question:
How do I write rules when they are similar?
My Rules:
RewriteRule ^blog/([0-9]+)/[-0-9a-zA-Z]+/?$ index.php?action=blog&postID=$1 [NC]
RewriteRule ^blog/([0-9]+)/[-0-9a-zA-Z]+/?$ ...
1
vote
2answers
35 views
Apache Rewrite URL Creating Linking Issues
Problem: rewrite url causing some links to break.
.htaccess has below rule:
RewriteRule ^blog/([0-9]+)/[-0-9a-zA-Z]+$ index.php?action=blog&postID=$1\%23disqus_thread [NC]
Style sheet reference ...
0
votes
2answers
25 views
Multiple RewriteRule
I would like to have multiple RewriteRules in my .htaccess file.
# Enable Rewriting
RewriteEngine on
# Rewrite profile urls
# Input: /user<userId>
# Output: /profile.php?id=<userId>
...
1
vote
1answer
20 views
Convert path queries to url variables with .htaccess?
I want to convert an entity query like 'http://www.mysite.com/users' to 'http://www.mysite.com/entities.php?entityName=users'.
How to make such a rewrite rule? Or what should I put into my .htaccess?
...
0
votes
1answer
16 views
I need to rewrite a particular URL using .htaccess
I need to rewrite this particular url below as follows
http://myexample.com/forum/addtopics.php?id=22&type=add
to
http://myexample.com/forum/category_name/add
I used the rewrite as it
...
0
votes
0answers
25 views
url masking in mvc3 leads to “The resource cannot be found”
I am developing a solution in mvc3 asp.net and I need to do url masking for a page.
The controller for the page needs to have an id but I have to mask the ID with a Specified name here is my ...
0
votes
1answer
27 views
IIS Rewrite URL To Subfolder
Hi I am trying to match my Request URL and redirect to subfolder from Defauls Website.
My Default Website is crm.domainname.com. If someone try with this request ,it should redirect to ...
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
27 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
2answers
30 views
Url renaming using .htaccess file
Most are for redirections and removing file extensions or for dynamic urls.
The problem being I can't get a simple static url to rename
Options +FollowSymlinks
RewriteEngine On
RewriteRule ...
0
votes
0answers
17 views
Routing with images src in MVC 4.0
I am using MVC 4.0 and stuck in an issue of image URL routing. I have images that take their names from the db and i have stored the file physically
So now my image tag looks like
`<img ...
0
votes
1answer
31 views
comments url helper - using rails - LinkBot?
K... This seems pretty straight forward, but it's not standardized, it would seem. I've only been looking for a few hours, but hopefully someone here can point me in the right direction.
So, an ...
2
votes
2answers
50 views
Rewrite rule leads to 403 forbbiden error
I have asked a question here yesterday and user "faa" tried to help me, but unfortunately we couldn't solve the issue.
Original question is here: Rewriting url with htaccess when a directory exists
...
0
votes
1answer
37 views
URL optimization with php
i've been trying several ways to optimize the url that result when the DB of my site is consulted, changing .htaccess adding some php at the top, and some other ways that include both, but nothing ...
0
votes
3answers
21 views
htaccess redirect url with domain as variable to an external site
I want to redirect
http://example.com/report?domain=dollarshaveclub.com
to
http://www.semrush.com/info/dollarshaveclub.com+%28by+organic%29
I've tried:
RewriteEngine On
RewriteBase /
...
1
vote
2answers
32 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
1answer
34 views
Rewrite/Redirect URL using IIRF
IIS 6, using IIRF. I'm not sure if this would be a rewrite or a redirect. We've got a new site and need to 301 redirect old page to new and keep the query string value only. I need the following ...
0
votes
2answers
58 views
Rewriting url with htaccess when a directory exists
I'm trying to redirect a dynamic page to a dir, example:
url.com/index.php?page=download
to
url.com/download
The rule is very simple:
RewriteRule ^download$ /index.php?page=download
FULL ...
1
vote
2answers
64 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. ...
1
vote
1answer
42 views
Rewrite rules in ISS's web.config
I'm just trying to get some code running on ISS that has been running on Apache for a long time.
A particular mod_rewrite rule is proving difficult to get working.
In Apache I've used:
RewriteRule ...
0
votes
0answers
23 views
rules rewriting issue - .htaccess
I am asking again a question since I was surelly not clear
I want using apache rules that this tags <a href="/admin/someaction">link</a> acts like <a ...
0
votes
1answer
25 views
Need three variables in my URL
I have 3 variables in my URL I need on my website: page, x, and action.
Like this:
/?page=category&x=geografi&action=succes
I wrote:
<IfModule mod_rewrite.c>
RewriteEngine On
...
1
vote
1answer
24 views
multiple .htaccess files conflicting with each other
I have a shared hosting with multiple domain hosted on it. In the root folder of my hosting exists a .htaccess (say is htaccess1). Code in ht1 is:
RewriteEngine on
RewriteCond %{HTTP_HOST} ...
0
votes
0answers
26 views
url rewriting with .htaccess not working
Here is the code previously written in my .htaccess file which worked fine:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond ...
1
vote
2answers
44 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
0answers
27 views
How to rewrite wordpress author page to fake subdomain?
I need to make authors pages like
author.domain.com
How can i do that without wp multisite? Only mod_rewrite or wp_rewrite?
I was looking for that, but dont found nothig close enough. Please, help
0
votes
0answers
25 views
appending folder structure in url rewriting
In our custom cms we have facility to add restaurant and special offers. Initially what I did is to rewrite friendly urls using the name field. To achieve this I write this code in the ...
0
votes
3answers
42 views
Get the name of a file downloaded from an url “rewrited” on IOS
I download a pdf file from an url rewrited, so I can't get de filename from the url. How can I get it ?
My current code:
NSString *documentsDirectory = [NSHomeDirectory()
...
2
votes
1answer
137 views
.htaccess give 404 Not Found when url in SEO-friendly URL
Im using opencart fresh install and using theme from here. After i enable SEO setting in admin and rename .htaccess file then set SEO keyword i can't open my product page. It show 404 error not found.
...
2
votes
3answers
192 views
Porting htaccess rewrite rules to hiphop-php config
I have a CodeIgniter project that requires rewriting rules to navigate controllers/views and the like. I have correctly installed hiphop-php on Ubuntu 12.04 and it works perfectly, including with the ...
0
votes
0answers
16 views
Re-writing the URL's in page source
Is there a way we can rewrite the URL's appearing in page source?
What I'm trying to do is... I have deployed my application on tomcat and created a proxy using httpd.
Now I want to enable URL ...
2
votes
2answers
38 views
New to .htaccess and RewriteRule
I'm making a site where users can create subdomains with files, folders etc.
these sites go into a folder called websites so it will be
site.com/websites/subdomain.site.com
I only need to get ...
0
votes
1answer
34 views
htaccess rewrite rule (arbitrarily path to index.php)
is it somehow possible to have a pattern which represents any path sequence which substitutes to my index.php with a parameter which holds the given path?
I have this rule
RewriteRule ^([^/.]+)$ ...
1
vote
1answer
26 views
HTACCESS - ErrorDocument + RewriteRule = Infinte Loop
I got an issue with ErrorDocument and RewriteRule. In simple words, here is what I have:
1. ErrorDocument 404 http://www.MYSITE.com/Cust404.html
2. RewriteEngine On
#/Some very needed custom ...
0
votes
0answers
11 views
URL Rewrite logic issue
I have three (3) urls, that need to use the same prefix:
/borderline
So in IIS I set up a MatchAll route to ^borderline that will redirect all users to ...
0
votes
0answers
25 views
How to make a htaccess rule to remove & from URL
I have some links in my site like www.example.com/name/id/about
Some names contain the & character (1 or more times) and I would like to remove it
Can any1 suggest a rewrite condition and rule ...
0
votes
1answer
33 views
web.config rewrite rule: rewriting from one query string to another which contains the first
I have a problem as follows:
I want to rewrite from /index.php?jobs to /index.php?retail-jobs-in-london
and I tried the following rule:
<rule name="jobs" stopProcessing="true">
<match ...
1
vote
1answer
84 views
Redirecting a Url in codeIgniter to a root folder
I have a folder structure like this in Code igniter : -
- www
- CI
- application
- config
- config.php
- adminfolder
- system
- css
- jss
And now ...
1
vote
0answers
35 views
How to add .htaccess {REQUEST_URI} at the end of this Rewrite Rule? [duplicate]
Im making a site where users can create subdomains with files, folders etc.
these sites go into a folder called websites so it will be site.com/websites/subdomain.site.com
I only need to get ...
0
votes
0answers
13 views
URL Rewrite has // at the end
I am running into an issue which is very annoying. I want to redirect my users who type simplymatchme.com to www.simplymatchme.com
So i added the following to my httpd.conf for apache
...
0
votes
1answer
46 views
Use Tucky UrlRewriteFilter to hide .jsp at the end of urls
I would like to simple hide the .jsp file extension at the end of all my urls for my Java web app. I've already gotten Tucky UrlRewriteFilter integrated using Maven, but I cannot figure out the magic ...
-2
votes
1answer
31 views
.htaccess rewrite addon domain to main domain subdirectory [closed]
I have something like this
main.net/ <-main domain
addon.com <- addon domain
subfolder/subfolder2 <- subfolders in main domain dir
I want to rewrite a request to something like ...
-1
votes
2answers
59 views
Rewrite url with multiple get variables
I have a url that looks like this
http://mysite.com/item/?food=1&drink=1&bar=1&name=Bomba
I want to make it more friendly and maybe more secure and to look something like
...
0
votes
1answer
41 views
404 Error on CodeIgniter with WAMP and URL ReWrite
I am running Win 8 64x with WAMP. I have a CodeIgniter project (v2.13), and I've followed the documentation and online tutorials on how to get the /index.php/ out of the URLs so that my URLs look like ...
-2
votes
1answer
26 views
Multipe rewrite urls (domain.tld/blogs.php?user=username&post=postname TO username.domain.tld/posts/postname) [closed]
How i can rewrite urls from this
domain.tld/blogs.php?user=username&post=postname
to this one:
username.domain.tld/posts/postname
-1
votes
1answer
33 views
How to rewrite and redirect at the same time
Let's assume there is a example.com (working on apache) and we have a subdirectory called "sub"(example.com/sub). Is it technically possible to configure .htacess to rewrite http://example.com/sub/ to ...
1
vote
1answer
30 views
url-rewrite & how to set it up with htaccess
I just got the rewrite engine loaded and active but can't figure out
how to design a good .htaccess file.
I want to transform links like this :
http://localhost/index.php?u=username --> ...
0
votes
1answer
33 views
Wordpress prefix dynamic value to custom taxonomy url
I have two custom taxonomies 'edition' and 'features'
I'd like wordpress to allow me to prefix the slug of features with a value from editions.
For example if i go here;
...
1
vote
1answer
64 views
MVC 4 creating slug type url
i am trying to create a stackoverflow like url.
I the following example works fine. But if i remove the controller then it errors out.
http://localhost:12719/Thread/Thread/500/slug-url-text
Note ...
0
votes
1answer
59 views
How to write htaccess rewrite for subdirectories recursively?
I have an Apache server, hosting a number of websites for my company. I plan to use htaccess, and rewrite the URLs from the "root" directory to a subfolder.
Here is my real folder structure:
/www ...



