2
votes
2answers
14 views
HT Access - Mod Rewrite
If i use:
RewriteEngine On
RewriteRule ^.* controller.php
It would send all requests to controller.php
But if controller.php included a css file (/assets/css/main.css) then it wouldn't work, as …
1
vote
2answers
36 views
Need help with Apache Rewrite issues
Hey guys,
My developer has provided me some Apache rewrite rules that are required for our application to work. When I added them to Apache my www.domain.com/blog and www.domain.com/phpmyadmin pages …
1
vote
3answers
38 views
switch mod rewritten URL
We are using a mod rewritten URL within our PHP site, this is the rewrite rule we are using:
RewriteRule ^category/([^.]+)/([0-9]+)/([^.]+)/([0-9]+) …
0
votes
5answers
69 views
.htaccess redirection
Hello I want to have some redirection made by .htaccess file:
Some examples
mysite.com/accepted -> mysite.com/index.php?type=accepted
mysite.com/waiting -> mysite.com/index.php?type=waiting
…
0
votes
2answers
14 views
RewriteRule to disregard a url variable
I have some pages indexed by Google, for example:
/product.html?affiliateid=142
I want a rewrite rule to 301 redirect to the same page if there's an affiliateid=xxx
So far I have this:
…
1
vote
2answers
29 views
htaccess rewriterule
A fairly basic htaccess question, but I don't use it much, so i have no idea.
I want to check if the requested file exists. If it does, forward to one page, and if not forward to another page and pass …
1
vote
1answer
49 views
How can I force ‘www’ subdomain w/ Apache2 + Rails + Phusion Passenger?
My clients want to use 301 redirects to force the 'www' subdomain on their sites. So 'example.com/something' resolves to 'www.example.com/somthing' etc.
What I'm trying to do is simply add this to my …
1
vote
2answers
30 views
.htaccess remove file extension before hashtag
http://freddygonzalez.me/dev/update/index.html#mywork.html
How can I use .htaccess to remove the index.html
So it could look like this
http://freddygonzalez.me/dev/update/#mywork.html
Also there …
0
votes
1answer
35 views
Is my redirect not removing final slash?
Hello all,
I have a site that I don't think my htaccess is implementing 301 redirects properly, I think my problem may be at the application level but I would appreciate it if someone can confirm the …
0
votes
1answer
18 views
What is wrong with this mod_rewrite redirect?
Hi, I have a simple redirect which I just can't get to work and I don't know what's wrong. The server's throwing me a 500 Internal Server Error for no reason I can understand.
I'm trying to achieve …
0
votes
1answer
30 views
301 redirection help on wordpress
Hello all friends,
I'm searching for a 301 redirect rules in .htaccess for the last one week. I have visited many similar pages here too. But all are not working for me. So I'm asking help from …
1
vote
3answers
60 views
mod_rewrite: Pass the path & query string URL as a parameter
I'm using mod_rewrite to rewrite pretty URLs to a form supported by a Spring 2.5 application.
e.g. /category/cat1?q=x => /controller?category=cat1&q=x
However from my controller I want to …
2
votes
2answers
44 views
Is it better to use routes or mod_rewrite to forward old URLs?
I recently changed some URLs in my Rails app and am curious if I'm better off using routes + controllers + redirect_to to forward the old URLs, or just use .htaccess with Apache's mod_rewrite?
I'm …
0
votes
2answers
15 views
.htaccess Conditional Redirect When Pattern Does Not Match
I want to enable my users to enter search queries using a URL like this:
www.domain.com/searchterm
or with a trailing slash like this:
www.domain.com/searchterm/
However, I want to capture certain …
1
vote
3answers
83 views
Recursive mod_rewrite for search engine friendly urls
I've been reading through a previous solution to a recursive mod_rewrite problem that is similar to what I'm trying to do, the difference is I'm sending all queries through an index.php file and so …
