skip to Main Content

How to attach same RewriteCond to different RewriteRule in .htaccess? – Apache

I want to redirect url to my ogp page when User-agent matches Twitter or Facebook. My redirect image is like this. /news/detail.html?id=1 -> /api/v1/informations/ogp/1?lang=ja /news/detail.html?id=1&lang=en -> /api/v1/informations/ogp/1?lang=en /sport/detail.html?id=1 -> /api/v1/sports/ogp/1?lang=ja /sport/detail.html?id=1&lang=en -> /api/v1/sports/ogp/1?lang=en /event/common/detail.html?id=1 -> /api/v1/events/ogp/1?lang=ja /event/common/detail.html?id=1 -> /api/v1/events/ogp/1?lang=ja /event/special/detail.html?id=2&lang=en…

VIEW QUESTION

Redirect to a single file in apache

I have an index.php file in the DocumentRoot of a virtualHost in apache. It contains : $path = $_SERVER['REQUEST_URI'] if($path == '/') echo json_encode(some_data); else if ($path == '/posts') echo json_encode(another_data); the thing is when I send a get request…

VIEW QUESTION

Error in htaccess file when clean url of php file – Apache

When I open this page of my website it gives a 500 error: single-portfolio/3/bizdb-business-directory-data-scraping-uk- My .htaccess file: RewriteEngine on RewriteCond %{THE_REQUEST} /([^.]+).php [NC] RewriteRule ^ /%1 [NC,L,R] RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^ %{REQUEST_URI}.php [NC,L] RewriteRule ^single-portfolio/([0-9]+)/([0-9a-zA-Z_-]+)$ single-portfolio.php?id=$1&title=$2 [NC,L] Error shown…

VIEW QUESTION

Why Laravel don't show or execute new Routes? – Apache

I don't know if I'm so stupid or my laravel is broken, BUT, here it is. That's my api.php: Route::get('/airport', [AppHttpControllersAirportsController::class, 'index']); Route::post('/airports', [AppHttpControllersAirportsController::class, 'create']); Route::get('/registrator', [AppHttpControllersRegistrationController::class, 'index']); The airport and airports work great. It's add all data in db…

VIEW QUESTION
Back To Top
Search