Tagged Questions
0
votes
2answers
31 views
url rewritting using .htaccess
I am using codeigniter.There is a url patern: localhost/mysite/application/assets/projects/projectname
The projectname part is dynamic. Now I want to rewrite that url to: ...
0
votes
1answer
15 views
Using .htaccess to change directory in url
I am trying to change the url that is displayed in the address bar from mysite.com/blog/wedding-hair/ to mysite.com/services/wedding-hair/ using .htaccess.
Using answers from:
assigning different ...
0
votes
0answers
9 views
.htaccess rewrite rules: category id page not being changed
I'm new to rewrite rules in .htaccess, and I'm having some trouble. I have the following working well, so that www.mydomain.com/index.php is changed to www.mydomain.com
Options +FollowSymLinks
...
0
votes
1answer
19 views
Using two GET variables in .htaccess (having problems outputting)
I'm currently trying to add a second get variable to an existing htaccess rule. I have little experience with the htaccess but using what expressions I know, I think it's missing one element to ensure ...
0
votes
0answers
6 views
htaccess file change url structure
I've been trying to rewrite my URL's with a htaccess file, for my wordpress site.
I would change the url structure for better indicization, so I need help to do it.
Home page is at:
www.aaaaa.it/wp
...
1
vote
3answers
43 views
How to rewriting URL with HTACCESS [duplicate]
This is a line of code on my htaccess file
RewriteRule ^([^\.]+)$ details.php
And this is working fine with this URL
example.com/shiv-sales-corporation
Now i want to add .html at the end of URL
...
0
votes
1answer
11 views
htaccess rewrite all subdomain to index.php
I know this question has been asked a lot but I don't know why it does not work for me :-?
this is my htaccess:
Options +FollowSymLinks
IndexIgnore */*
# Turn on the RewriteEngine
RewriteEngine On
# ...
0
votes
2answers
12 views
Using or ( | ) statement in .htaccess rewrite rules
Instead of writing 2 rewrite rules for pointing to the same page, I though I would be able to do this with one rule using the Or statement ( | ):
RewriteRule ^([\d]+)-post[\d]*\.html|#post([\d]+) ...
0
votes
1answer
19 views
MVC htaccess rewrite - hide index
I have a basic MVC structure with a restful uri design of:
mysite.com/appdir/:index/:controller/:action/
and I want to hide the index route parameter so my uri looks like:
...
0
votes
0answers
26 views
RewriteEngine to hide extensions and GET
How can I rewrite this URL ?
http://website.com/file.php?lang=en
to
http://website.com/file/en
File name and parameters can change, I found a lot of topics put I did not found the combination of ...
0
votes
0answers
10 views
.htaccess delete the trailing slash
When I created my website I wanted a url with the three "w" without a trailing slash so I did the following in my .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.es
RewriteRule (.*) ...
1
vote
2answers
27 views
.htaccess rewriterule is redirecting me to another site - why
I am trying to do some work in serve_each_drive.php under the url drive_for_london/?pid=12
this is my .htaccess:
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ...
0
votes
0answers
23 views
.htaccess route with file check not working with querystring
I'm certainly no expert with .htaccess files, so bear with me..
I have a nice simple rule:
RewriteCond %{DOCUMENT_ROOT}/landing-pages/$1.aspx -f
RewriteRule ^/(.[^/]*)/?$ /landing-pages/$1.aspx ...
0
votes
2answers
28 views
htaccess RewriteRule in CodeIgniter
I got this problem with htaccess. I use CodeIgniter and I removed 'index.php' from link:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 ...
0
votes
2answers
28 views
change the url using with htaccess
i am trying to change the url using htaccess rewrite
i want to change this url
page/details.php?name=abcdef&id=18
to
page/abcdef
Here my sample code for this
RewriteEngine On
RewriteRule ...
1
vote
0answers
29 views
Rewrite rule for subdomain, nice URL variable and slash
I struggle with setting up proper mod_rewrite rule for my domain.
I was never any good at regexp-kinda expressions, but every documented tutorial I just fail to use for myself.
Domain: example.org
...
1
vote
4answers
60 views
Replace ID in URL to username
I have a URl
http://website.com/view/b2c32b2c782f65be2c299f7b38189a120fd51c89/
which directs the users to a profile, i.e. the id relating to the user.
Is there anyway using php/.htacess/mysql ...
0
votes
1answer
34 views
URL rewriting for video file htaccess
I want rewrite url
http://site.com/videoplayback?pkey=05131305222303&hkey=a7432d324546a9b2c24abb4e81a26e67&tkey=l4i5w5s444&fkey=05131305222303.mp4
to
...
1
vote
1answer
24 views
URL-Rewriting won't allow reg-ex as first paramater in address
I am using Helicon Ape in IIS7 for my 'mod rewrite' on Windows Server 2008.
Very simple rule:
RewriteRule ^([^\/]+) /index.php?page=$1 [L,NC]
www.example.com/mypage
This doesn't work, and I have ...
-1
votes
1answer
22 views
How to write rewrite rule
I am developing a website in wordpress and I am trying to write a simple rewrite rule (seems pretty simple with all these documentation).
I need to change ...
1
vote
1answer
36 views
using htaccess to remove .php from URL
MY URL: http://localhost/test.php
I am using:
.htaccess:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?url=$1 ...
0
votes
0answers
12 views
Wrong url converting
I was wondering if it is possible to do the following with htaccess.
The url a user types is
www/yoursite.be/test/test/
The url I want to redirect to is
www.yoursite.be/test/test/
does anyone ...
1
vote
2answers
37 views
.htaccess - re-writing a url using multiple parts of the original
I've been trying to fix this problem for 3 days and can't find the answer so I'm hopeful someone will be able to shed some light on this.
I am looking to dynamically re-write URLs as permanent 301 ...
0
votes
0answers
5 views
Route subfolder urls to index folder taking its params as variable
I have a site index containing main files.
I want to route users from subdomains to index files catching the param, however leaving urls of subdomains. e.g.
mysite.com -> item.php (etc)
to be ...
1
vote
2answers
37 views
Removing Part of URL with .htaccess
I have recently removed a module from Magento that created vanity URL, for filtered searches.
When I've removed this module its now using URL parameters for all filtered navigation pages.
I want to ...
0
votes
1answer
36 views
How to rewrite url while keeping additional parameters in .htaccess file?
I have the standard htaccess which just catches all and puts it into one url parameter which is later processed in code...
RewriteRule ^config/ - [F]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
1answer
37 views
.htaccess rewrite url - show html file as jpg
I have image.html and I want It to be shown in browser as image.jpg, because there are some operations when showing picture, that can't be done before or after. Is it even possible with .htaccess and ...
0
votes
0answers
12 views
custom 404 error page issue
i have facing custom 404 page issue
my directory are follows
index.php
404.php
my htaccess code is ..
Options +FollowSymLinks
RewriteEngine on
RewriteRule ([0-9])/ index.php?page=$1
...
1
vote
2answers
31 views
Allow google to access just one folder and block the rest of site
EDIT: Doing this with robots.txt isn't good enough for me.
This code block entire site from google. I do not know how to keep this code functional but allow google to access one folder on the site.
...
0
votes
0answers
8 views
Using rewrite URL's in subdomain not work
At the moment, I have this code in the file .htaccess
RewriteCond %{HTTP_HOST} ^domain\.com [NC]
RewriteRule ^(.*)$ http://www.domain.com%{REQUEST_URI} [r=301,NC,NE]
I want, you can use the url's ...
0
votes
1answer
16 views
.htaccess url rewrite external link
I have a music site I am working on and was wondering how can I rewrite an external link to make it look as though I am serving content locally?
basically, I want to load external mp3's but visually ...
0
votes
0answers
20 views
Troubles with Godaddy for Url rewrite to allow any extension. All extensions should lead to the same page
I recently install a url rewritting on one of my sites and now, some of my old backlinks go to a 404 page. Therefore, I wouldlike my rewritting to be tolerant and accept any extension for the pages. I ...
0
votes
0answers
38 views
301 redirect -new link structure of website
i am converting an old zencart site to opencart with new design. every thing is done, i have also enabled SEF urls in opencart so my opencart links look like
...
0
votes
1answer
10 views
URL ReWrite with Toro Script (Force trailing slash)
I know this question is fairly over-asked!
But every situation is different... and i'm not very good at .htaccess modifications.
Currently I am using a PHP index routing script from TORO. In which I ...
0
votes
0answers
26 views
Rewrite Rule not Working in IIS Server with PHP
Hi, friends. I'm creating an .htaccess file with rewrite rules. It's working fine in localhost, but on the live, server it's not working. My hosting uses a Window server.
I wrote this Rule in my ...
0
votes
1answer
18 views
Redirect to a specific subfolder using htaccess
Here's my folder structure:
website.com
main
sub1
sub2
...
0
votes
1answer
13 views
htaccess rule to rename .php to .html is interfering with other rules
I am attempting to change all .php files to .html extensions and the rule I am using is interfering with other rules in my .htaccess file. It appears that I can either get one set of rules to work or ...
0
votes
1answer
97 views
htaccess redirection not working in codeigniter
I have my .htaccess code as follows :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /annsenglishmediumschool
RewriteCond %{HTTP_HOST} ^(.+?)\.annsenglishmediumschool\.com$
...
-1
votes
0answers
53 views
Rewrite URL with .htaccess, can access like Directory with / or no
I have the file about.php file at domain.com and want domain.com/about.php to be access able with domain.com/about or domain.com/about/
This is my RewriteRule
RewriteRule ^(.*)/$ index.php?to=$1
...
0
votes
0answers
16 views
Remove Subdirectory from Url using htaccess
I want my site to rewrite its url by removing the subdirectory but keeping the content.
from www.site.com/dummysite to www.site.com
Here is the current code on my htaccess
<IfModule ...
0
votes
3answers
37 views
PHP MVC with better htaccess
I have no idea how htaccess works, and the theory of it just wont connect in my head no matter how many tutorials I read.
I am building a simple MVC framework which works beautifully, except I don't ...
0
votes
2answers
80 views
htaccess redirection in codeigniter
I have the following code in my .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /annsenglishmediumschool
RewriteCond %{HTTP_HOST} shops.annsenglishmediumschool.com
...
0
votes
1answer
42 views
.htaccess redirection in codeigniter
I have the following rule in my .htaccess :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www.)?annsenglishmediumschool.com$ [NC]
RewriteCond %{HTTP_HOST} ...
0
votes
0answers
51 views
Problems with redirecting https to http with exceptions
We got a Magento website and the checkout, login etc. pages work fine they redirect automatically to https. But we have an issue with all other url’s because they are accessible thru http and https ...
0
votes
3answers
61 views
Redirect Url in codeigniter
I want to redirect a url in my lcalhost ,as when user types : mystring.localhost/CI to localhost/CI/Mycontroller/Myaction/mystring in codeigniter .its now showing Server not found and says browser ...
0
votes
1answer
38 views
.htaccess - redirecting several pages
I've been trying to wrap my head around .htaccess for most of the weekend, but I keep stumbling; I can get the server to work with one set of rules, but no more than one at a time.
My application is ...
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]+/?$ ...
0
votes
2answers
24 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
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.


