I have a URL http://localhost/index.php?user=1. When I add this .htaccess file I will be now allowed to use http://localhost/user/1 link. But how about http://localhost/index.php?user=1&action=update how can I make it into http://localhost/user/1/update ? Also how can I make this url http://localhost/user…
Tag: .htaccess
Fatal error: Allowed Memory size of 67108864 in opencart
I’m using opencart. In my admin page when I access CATALOG>PRODUCTS (I have 73 products – Totally I have four pages). When I access my second page it shows this following error But, I can access first, third and fourth page. I have tried this solution (Allowed memory size of 67108864 bytes exha…
Laravel routes aren’t working with 1&1 [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. Improve this question Many many many topics about this, but I have to say that none are helping me a great deal. I …
GET method in php mvc framework
I am writing a PHP MVC framework from scratch by myself, I use this .htaccess rules to redirect all requests to my bootstrap: Now the problem is I can’t use GET method anymore on forms, when I want to submit a search form using GET method the get parameter won’t send, but it will work with post bu…
Need to turn off ModPagespeed
I’ve been trying to turn off the ModPagespeed module for this site : http://www.mundo-satelital.com.ar , firstly through .htaccess ModPagespeed off
500 Internal Server Error when trying to use ErrorDocument to handle request
I have this .htaccess file: However, when I go to localhost/example.php, it returns a 500 Internal Server Error. Any help please? Thanks. EDIT: The full error message that comes up is: Answer You’re most likely getting 500 due to looping error. Exclude 404.php from last rule as:
rewrite uppercase url to lowercase url htaccess
I want my urls that contain uppercase characters to be redirected to lowercase url’s. Unfortunatly i don’t have access to the httpd.config file. So i tried this method to rewrite the urls with the htaccess file: http://www.askapache.com/htaccess/rewrite-uppercase-lowercase.html . But it adds extra…
website showing 403-forbidden, .htaccess file has changed because of back up
I have back up files from public_html using filezilla, but after doing it my website shows 403-forbidden. In .htaccess file ‘order deny,allow’ at the top of the page and ‘deny from all’ at the end. I …
Redirect /index.php – wordpress
I want that if someone got link to my site, lets say: www.bla.com/index.php , he will redirect to www.bla.com. or in another words – remove the index.php. Here is my .htaccess file: Either if someone got link: www.bla.com/camera/index.php – it will redirect to www.bla.com/camera/. For now, the sit…
Redirect only WordPress homepage with a 301 redirect
I have a blog, lets say example.com and another blog installed in example.com/np which is not multisite but a different WordPress installation. What I want is to redirect example.com homepage only to example.com/np. It would be great if that redirection is a 301 moved permanently redirection. If I place the 3…