Tagged Questions
0
votes
0answers
12 views
Move a website to subdomain while preserving (rewriting) URLs
I'm considering to move the (Confluence) wiki content of www.site.com to the subdomain wiki.site.com to make room for a well-designed landing page (Wordpress) which should take the wiki's place on ...
1
vote
0answers
38 views
optimize htaccess
I have two condition which are conflict
RewriteRule ^patients/findadoctor/(.*)\.html$ subcategorydoctor.php?id=$1 [L,NC] and
RewriteRule ^patients/findadoctor/(.*)\.html$ ...
1
vote
1answer
23 views
Redirecting previous domain subfolder links
I've recently bought a domain that was unregistered. After looking in Google webmaster tools, Google is trying to crawl random pages that don't exist. Turns out it did have a previous owner.
The ...
0
votes
1answer
55 views
Rewritten URLs stopped getting indexed a month ago
I'm working on a website for someone which sells their products on their web site. There is an item.php page which displays the item for sale. I switched all item pages/inks from dynamic URLs to ...
0
votes
0answers
33 views
URL rewrite with mod_rewrite
I have rewrite rule in parent directory which rewrites URL:
From example.com/index.php?id=test&cat=category
To example.com/index?test&cat=category
Here is my .htaccess file:
Options ...
1
vote
1answer
467 views
how to rewrite %20 in .htaccess
I need to perform an equivalent rewrite to:
RewriteRule ^/this%20file.pdf http://www.example.com/
How do I handle the %20?
I have tried
RewriteRule ^/this\%20file.pdf http://www.example.com/
...
3
votes
1answer
369 views
Wild card redirect in htaccess giving error this webpage has a redirect loop
In my website I changed the directory name "vehicles-cars" to "vehicles-cars-for-sale". When I tried to redirect using a wild card redirect from my old directory name to new directory name in my web ...
0
votes
1answer
58 views
rewrite url for articles with htaccess
I've had a look through several other questions to see if i could get this working but have had no success at all at the moment so i'm hoping someone can help.
This is the url i currently have,
...
2
votes
2answers
630 views
apache rewriting url doesn't work(using godaddy hosting)
I'm using a framework to create my website(codeigniter) by default the urls are like this:mysite.com/index.php?/etc/etc/etc.
And I'm trying to remove the index.php?, I tried to remove it by doing ...
2
votes
1answer
292 views
Htaccess - Rewrite png to php file
I currently use trans.png.php?id=1&campaign=test to track my newsletter campaigns.
I want to use trans.png instead as it's the src of an img tag.
How can i do this in htaccess? Also is there any ...
1
vote
1answer
145 views
dynamically rewrite URLs upon the user's selection - is it possible?
In my PHP based web application, there's a form that generates a URL according to the user's selection.
The form has 7 different fields, each one of them affects the final URL, none of them is ...
5
votes
3answers
9k views
How to remove trailing slashes from URL with .htaccess?
The situation
Across the entire domain, we'd like the URLs to hide file extensions and remove trailing slashes, independent of the domain name itself (as in, works on any domain).
Sample of our ...
1
vote
2answers
496 views
Url rewrite subfolder to root and forbid accessing subfolder
I have drupal installed in a subfolder drupal, but I want to access pages as it is in root folder: http://www.example.com instead of http://www.example.com/drupal
I'm able to have this working, but ...
3
votes
1answer
134 views
Looking for a step by step guide to URL re-writing with mod_rewrite and other methods
I'm looking for step by step resource about how to rewrite URLs and have a few specific questions.
I've read the documentation on mod_rewrite in Apache, but I still find myself a little lost.
If ...
4
votes
2answers
954 views
URL rewriting removing question mark and replace it with slash
How can I rewrite my URL from edit.php?id=2 to edit/id/2?
0
votes
2answers
2k views
.htaccess rewrite www to non-www and remove .html
I need rewrite rules to redirect the following:
http://www. to http://
/file.html to /file
I've tried using a combination of these but each time it results in a redirect loop on one of the ...
-1
votes
2answers
2k views
Having trouble redirecting old product sites and categories to new pages
I recently upgraded a shopsystem to prestashop and imported the previous products (~1200), and I managed to keep the old category_id and product_id. I'm trying to set up those 2 rules to redirect all ...
1
vote
2answers
46 views
rewrite url (redirection)
How to rewrite url:
www.domain.com
domain.com
to
www.domain.com/sell.html
Were sell.html is already rewritten I need some kind of redirection.
3
votes
1answer
312 views
clean urls and differences in hosts
I am developing a relatively static website, where I want to be able to access each page without typing .html (or .htm or .xhtml ...) at the end (/about not /about.html).
I am developing using the ...
1
vote
1answer
844 views
URL Rewrite to subdomains?
say i have a website with /article.php?id=1&category=Minecraft&Name=Lorem+Ipsum
and /topic.php?category=Minecraft
how would i setup url rewrite to make the topic pages being
...
0
votes
1answer
46 views
mod_rewrite change . to -
I'm moving my site and the URL structure has changed because of the new CMS. The urls would be similar to http://www.example.com/my.products.htm on the new site we are changing the URLs to this ...
0
votes
1answer
217 views
How to block access to a sub-site with mod_rewrite?
Let's say I have the sites siteA.com and siteB.com. They are hosted such that siteB.com actually points to siteA.com/siteB.
How can I block someone from visiting siteA.com/siteB using mod_rewrite?
...
1
vote
2answers
1k views
apache domain redirect to subfolder
I have a hosting account with godaddy. Its a linux system running apache. The way they do their setup is your primary domain is the root folder. When you add a subdomain its in a subfolder of the ...
3
votes
2answers
4k views
Rewrite for robots.txt and favicon.ico
I have setup some rules in which subdomains (my users) will default to where I have located the robots.txt, favicon.ico, and crossdomain.xml
therefore if a user creates a site say
...
2
votes
1answer
1k views
Joomla 1.6 URL rewrite on IIS7 (removing /index.php/)
Joomla 1.6 was released today and I'm wondering if anyone knows how to get rid of the /index.php/ part?
How link looks now:
http://www.example.org/index.php/stuff
How link would look after URL ...
8
votes
6answers
1k views
Poor Man's Clean URLs vs. Mod_Rewrite
At the company where I work, we're getting ready to design a new web site, and there's some disagreement about how to do clean URLs. Over the past year we've been making small improvements to our ...
7
votes
1answer
246 views
Apache rewrite rules for development workstation and server
I've got developers editing pages for several sites on a WAMP stack and then uploading to the public servers running LAMP stacks. We're pretty happy with it, but we have this minor annoyance: we can't ...
5
votes
5answers
5k views
How to Remove Extensions From, and Force the Trailing Slash at the End of URLs?
Example of current file structure:
example.com/foo.php
example.com/bar.html
example.com/directory/
example.com/directory/foo.php
example.com/directory/bar.html
...
