Directory-level configuration file used by Apache web servers.
2
votes
2answers
47 views
Prettifying URLs for a PHP-based club website
I have a website for my car enthusiast club ("example.org") whose content can be divided into three main sections: Startseite (the "front page" of the site), Mitglieder (membership directory), and ...
3
votes
2answers
36 views
5
votes
1answer
26 views
Redirect for subdomains and secondary domains
I've just edited my .htaccess file. All works as it should, but I'm not too familiar with regular expressions and want to make sure that there aren't any unintended ...
2
votes
2answers
77 views
301 redirect using .htaccess
I wonder if the following 301 redirect is the best way for my situation. I used this post on SO to give me the following 301 redirect:
...
7
votes
1answer
67 views
An .htaccess for our entire site
We have this long .htaccess mainly rewriting our URLs. Everything works fine (except blog titles containing a ' , but we're ...
0
votes
2answers
155 views
All-purposes AJAX handler made with PHP and .htaccess that speaks JSON
In a project I've started, I decided to implement some new code to handle AJAX requests.
The requirements are that it can ONLY access the /ajax/ folder, load ...
1
vote
2answers
49 views
Redirecting all pages under a certain directory to a single file
I want to redirect all pages under a certain directory to a single file, like so:
/dir/a → /dir/new
...
3
votes
1answer
33 views
Faults using mod_rewrite
I never really bothered using mod_rewrite to achieve SEO friendly names but I've always admired from a distance because I've never been good at regex.
The below .htaccess file does work, but I'm ...
4
votes
0answers
102 views
.htaccess index.php removal, static content serving
I am writing a CMS type application and I am trying to restrict how the server gets accessed.
Any content (in js/, css/ or images/ directories) should be served as is, as long as there is an ...
2
votes
1answer
37 views
Forcing SSL and WWW using .htaccess
I would like to know if this code in .htaccess for forcing SSL and WWW in URL is correct, because with another code I usually get redirect loop, e.g. ...
3
votes
1answer
159 views
htaccess for URL remapping, caching, and compression
I have been collecting snippets from all over the place and then put them all together creating the following .htaccess file.
I really don't understand if what I have done below is good/should work ...
13
votes
1answer
313 views
Portable website template
I have spent the last 6 months as I am studying web development in college to build a website template that is responsive and accessible from as many devices and browsers as possible.
I would really ...
4
votes
1answer
127 views
Review URL-prettifying .htaccess file
Can anyone please review the following .htaccess file and let me if it is correctly put together?
What I think it does:
So it direct to a custom 404 page
Remove ...
2
votes
0answers
1k views
Automatically redirect /index.php files to their URL directory with .htaccess
The requirements:
Work inside .htaccess (preferably via mod_rewrite)
Redirect requests from /any/directory/index.php to ...
2
votes
2answers
616 views
Is it ok to use PHP's strpos and substr altogether in one statement?
I am using PHP to build a REST API. I want to receive requests from the URL in the following format:
http://mydomain.com/api/format/method?app_id=value&call=encrypted_request
So, I have modified ...
2
votes
1answer
109 views
Can my router code be improved?
I have created a nice url structure for my site.
In my .htaccess I have:
FallBackResource /index.php
And in my router class I have:
...
6
votes
1answer
221 views
Canonicalize URLs for static website
I want to "canonicalize" URLs for my static (files and folders) website.
The 'Aims' describes what I want to accomplish. The 'Code' gives my current .htaccess.
...
5
votes
1answer
176 views
Suggestions on how to improve this .htaccess file for page load speed
Here is my standard .htaccess file, any suggestions on how I can improve it with regards to page load speed? Would gZip instead of DEFLATE make any sort of difference?
...
7
votes
2answers
5k views
MVC router class
Below is what I have come up with for a router/dispatcher system for my personal framework I am working on. Can you please review and tell me any improvements that could be made?
The first part is ...