ビューでロジックを分割するために、すべてのルーティングindex.php?page = controller(簡略化)を処理するindex.phpがあります。
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w\d~%.:_\-]+)$ index.php?page=$1 [NC]
基本的に: http://localhost/index.php?page = controller To
http:// localhost/controller /
誰でも私にリライトを追加するのを手伝ってもらえますか
http:// localhost/controller/param/value/param/value (以降)
それは:
http:// localhost/controller /?param = value&param = value
Rewriteruleで動作させることはできません。
コントローラは次のようになります。
<?php
if (isset($_GET['action'])) {
if ($_GET['action'] == 'delete') {
do_Delete_stuff_here();
}
}
?>
そしてまた:
<?php
if (isset($_GET['action']) && isset($_GET['x'])) {
if ($_GET['action'] == 'delete') {
do_Delete_stuff_here();
}
}
?>
基本的に人々が言おうとしているのは、次のような書き換えルールを作成することです。
RewriteRule ^(.*)$ index.php?params=$1 [NC, QSA]
これにより、実際のphpファイルは次のようになります。
index.php?params=param/value/param/value
実際のURLは次のようになります。
http://url.com/params/param/value/param/value
そして、PHPファイルでは、次のように展開することで、パラメータにアクセスできます。
<?php
$params = explode( "/", $_GET['params'] );
for($i = 0; $i < count($params); $i+=2) {
echo $params[$i] ." has value: ". $params[$i+1] ."<br />";
}
?>
すべてのリクエストをindex.phpファイルにリダイレクトしてから、phpを使用してコントローラー名とその他のパラメーターを抽出する方が良いと思います。 Zend Frameworkなどの他のフレームワークと同じです。
これは、あなたが望んでいることを実行できる単純なクラスです。
class HttpRequest
{
/**
* default controller class
*/
const CONTROLLER_CLASSNAME = 'Index';
/**
* position of controller
*/
protected $controllerkey = 0;
/**
* site base url
*/
protected $baseUrl;
/**
* current controller class name
*/
protected $controllerClassName;
/**
* list of all parameters $_GET and $_POST
*/
protected $parameters;
public function __construct()
{
// set defaults
$this->controllerClassName = self::CONTROLLER_CLASSNAME;
}
public function setBaseUrl($url)
{
$this->baseUrl = $url;
return $this;
}
public function setParameters($params)
{
$this->parameters = $params;
return $this;
}
public function getParameters()
{
if ($this->parameters == null) {
$this->parameters = array();
}
return $this->parameters;
}
public function getControllerClassName()
{
return $this->controllerClassName;
}
/**
* get value of $_GET or $_POST. $_POST override the same parameter in $_GET
*
* @param type $name
* @param type $default
* @param type $filter
* @return type
*/
public function getParam($name, $default = null)
{
if (isset($this->parameters[$name])) {
return $this->parameters[$name];
}
return $default;
}
public function getRequestUri()
{
if (!isset($_SERVER['REQUEST_URI'])) {
return '';
}
$uri = $_SERVER['REQUEST_URI'];
$uri = trim(str_replace($this->baseUrl, '', $uri), '/');
return $uri;
}
public function createRequest()
{
$uri = $this->getRequestUri();
// Uri parts
$uriParts = explode('/', $uri);
// if we are in index page
if (!isset($uriParts[$this->controllerkey])) {
return $this;
}
// format the controller class name
$this->controllerClassName = $this->formatControllerName($uriParts[$this->controllerkey]);
// remove controller name from uri
unset($uriParts[$this->controllerkey]);
// if there are no parameters left
if (empty($uriParts)) {
return $this;
}
// find and setup parameters starting from $_GET to $_POST
$i = 0;
$keyName = '';
foreach ($uriParts as $key => $value) {
if ($i == 0) {
$this->parameters[$value] = '';
$keyName = $value;
$i = 1;
} else {
$this->parameters[$keyName] = $value;
$i = 0;
}
}
// now add $_POST data
if ($_POST) {
foreach ($_POST as $postKey => $postData) {
$this->parameters[$postKey] = $postData;
}
}
return $this;
}
/**
* Word seperator is '-'
* convert the string from dash seperator to camel case
*
* @param type $unformatted
* @return type
*/
protected function formatControllerName($unformatted)
{
if (strpos($unformatted, '-') !== false) {
$formattedName = array_map('ucwords', explode('-', $unformatted));
$formattedName = join('', $formattedName);
} else {
// string is one Word
$formattedName = ucwords($unformatted);
}
// if the string starts with number
if (is_numeric(substr($formattedName, 0, 1))) {
$part = $part == $this->controllerkey ? 'controller' : 'action';
throw new Exception('Incorrect ' . $part . ' name "' . $formattedName . '".');
}
return ltrim($formattedName, '_');
}
}
使用方法:
$request = new HttpRequest();
$request->setBaseUrl('/your/base/url/');
$request->createRequest();
echo $request->getControllerClassName(); // return controller name. Controller name separated by '-' is going to be converted to camel case.
var_dump ($request->getParameters()); // print all other parameters $_GET & $_POST
。htaccessファイル:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
書き換えルールはURL全体を渡します。
RewriteRule ^(.*)$ index.php?params=$1 [NC]
あなたのindex.phpはそのフルパスをあなたのためにcontroller/param/value/param/valueとして解釈します(my PHPは少し錆びています):
$params = explode("/", $_GET['params']);
if (count($params) % 2 != 1) die("Invalid path length!");
$controller = $params[0];
$my_params = array();
for ($i = 1; $i < count($params); $i += 2) {
$my_params[$params[$i]] = $params[$i + 1];
}
index.php?params=param/value/param/value
にリダイレクトして、phpに$_GET['params']
全体を分割させてください。これがwordpressの処理方法だと思います。
これはあなたが探しているものですか?
この例では、ループフラグを使用してクエリ文字列パラメーターを簡単に非表示にする方法を示します。 http://www.mysite.com/foo.asp?a=A&b=B&c=C のようなURLがあり、 http:// www。 myhost.com/foo.asp/a/A/b/B/c/C
次のルールを試して、目的の結果を達成してください。
RewriteRule ^(.*?\.php)/([^/]*)/([^/]*)(/.+)? $1$4?$2=$3 [NC,N,QSA]
なんらかの理由で、選択したソリューションはうまくいきませんでした。 paramsの値として「index.php」のみを常に返します。
試行錯誤の後、次のルールがうまく機能することがわかりました。 yoursite.com/somewhere/var1/var2/var3がyoursite.com/somewhere/index.php?params=var1/var2/var3を指すようにする場合、「somewhere」の.htaccessファイルに次のルールを配置します。ディレクトリ:
Options +FollowSymLinks
RewriteEngine On
# The first 2 conditions may or may not be relevant for your needs
# If the request is not for a valid file
RewriteCond %{REQUEST_FILENAME} !-d
# If the request is not for a valid directory
RewriteCond %{REQUEST_FILENAME} !-f
# This rule converts your flat link to a query
RewriteRule ^(.*)$ index.php?params=$1 [L,NC,NE]
次に、PHPまたは選択した言語のいずれかで、@ Wessoが指摘したように、explodeコマンドを使用して値を分離します。
テストのためには、index.phpファイルでこれで十分です。
if (isset($_GET['params']))
{
$params = explode( "/", $_GET['params'] );
print_r($params);
exit("YUP!");
}
Apacheサーバーを使用していることを確認してください。htaccessはApacheサーバーでのみ機能します。 IISを使用している場合、web.configが必要です。その場合:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Homepage">
<match url="Homepage"/>
<action type="Rewrite" url="index.php" appendQueryString="true"/>
</rule>
</rules>
</rewrite>
<httpErrors errorMode="Detailed"/>
<handlers>
<add name="php" path="*.php" verb="*" modules="IsapiModule" scriptProcessor="C:\Program Files\Parallels\Plesk\Additional\PleskPHP5\php5isapi.dll" resourceType="Unspecified"/>
</handlers>
</system.webServer>
</configuration>