Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a .htaccess file with content below which is changing my index.php?page=aboutus to aboutus.htm RewriteRule ^([^/.]+)(.html)/?$ index.php?page=$1

I am using $_GET["page"] to print content from database using PHP, but if someone type test.html it is checking database for test data,

How can I use .htaccess to alow only few .html files in url such as aboutus.html, home.html, projects.html etc...

Thanks

share|improve this question
1  
why not restrict the database access directly in your php script ? use an array to specify what pages you allow the user to view. – Oddant Nov 13 '11 at 13:09
Thank you for your reply but I want to have 404 erroDocument – Noor Ahmad Feroozi Nov 14 '11 at 7:50

2 Answers

up vote 0 down vote accepted
RewriteRule ^(aboutus|home|projects)\.html/?$ index.php?page=$1

PS. why do you want to keep the '.html' part in your urls? They don't really add anything.

share|improve this answer
thank you for you help, .html is just for fun. ;) – Noor Ahmad Feroozi Nov 14 '11 at 7:51
thanks mate, your one line script solved my all problems. ;) – Noor Ahmad Feroozi Nov 15 '11 at 8:15

as I said in my comment, you could do the verification directly in your php script.

anyway if you really want to do that with an .htaccess file you might consider using RewriteMap :

Apache documentation.

however it can be a bit complex if you're not familiar with it and if the verification apply on a small set of files should be better to use the RewriteCond directive :

RewriteCond %{REQUEST_URI} ^/(aboutus|home|projects)
RewriteRule ^([^/\.]+)(.*)?$ index.php?page=$1 [L] 
share|improve this answer
Thanks mate.... – Noor Ahmad Feroozi Nov 14 '11 at 7:54
@noorahmad you're welcome, I edited the code, cause there were some issue with it (the starting slash and the possible path after the first segment in your uri). I hope that will help. – Oddant Nov 14 '11 at 8:08
thank you for your reply, but still I have some problems. Edit: This line of code helped me a lot: RewriteRule ^(aboutus|home|projects)\.html/?$ index.php?page=$1 in case anyone face with the same problem – Noor Ahmad Feroozi Nov 15 '11 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.